Welcome to mirror list, hosted at ThFree Co, Russian Federation.

style.css « css - github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bafbb75d59cfdf526a935c80d9835cb5e7ddc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
.ie8 #editor_container div{
	/* override core style.css font-size:100% that messes up the editor in IE8 */
	font-size: 12px !important;
}

#editor_controls {
	background-color: white;
	height: 44px;
	border-bottom: 2px solid #eee;

}

#editor {
	position: relative;
	display: block;
	top: 0;
	left: 0;
	z-index: 20;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

#editor_container{
    position: fixed;
    top: 8%;
    left: 5%;
    width: 90%;
    height: 88%;
    z-index:1002;
    overflow: hidden;
    border: 2px solid #ccc;
    background-color: white;
}

@media(max-width: 768px) {
	#editor_container {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		border: none;
		margin-top: 45px;
	}
}

#editor_save, #editor_next {
	margin: 5px 0 0 7px;
	float: left;
	padding-top: 5px !important;
	height: 34px !important;
}

#editor_save.icon-loading {
	background-size: 20px;
}

#editor_close {
	float: right;
	width: 34px;
	border: none;
	background-color: transparent;
	padding: 22px !important;
	margin: 0 !important;
	border-radius: 0;
	right: 0;
}

#editor_close:hover {
	background-color: #ddd;
}

#editorcontrols > button, #editorsearchval  {
	height: 30px !important;
	margin-top: 7px;
}

#nextsearchbtn {
	padding-top: 5px !important;
	margin-top: 6px !important;
}

.viewer-mode #app-navigation+#app-content #controls {
	width: initial: !important;
}

#editor_controls small.filename {
	float: left;
	color: #555;
	font-family: inherit;
	font-size: 100%;
	padding: 12px 4px 0 14px;
	font-weight: bolder;
	text-overflow: ellipsis;
	max-width: 237px;
	overflow: hidden;
}

#editor_controls small.lastsaved {
	float: left;
	color: #ccc;
	font-family: inherit;
	font-size: 90%;
	padding: 12px 4px 0 14px;
	overflow: hidden;
}

/* This is to hide the saved time when getting narrow */
@media(max-width: 540px) {
	#editor_controls small.lastsaved {
		display: none;
	}
}

 #editor_overlay{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:1001;
    -moz-opacity: 0.7;
    opacity:.70;
    filter: alpha(opacity=70);
}