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: 92d84ce17f97c65d6184412f393057f412b090b9 (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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
.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;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1000;
}

#editor div.ace_gutter, #editor div.ace_scroller {
	margin-top: 46px;
}

#editor div.ace_gutter {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	opacity: .2;
 	background-color: transparent;
}

#editor {
	display: block;
	height: 100%;
	width: 100%;
	overflow: hidden;
	min-height: 440px;
}

#editor_wrap {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

#editor_container{
    position: fixed;
    top: 8%;
	left: 15%;
	width: 70%;
    height: 88%;
    z-index:9999;
    overflow: hidden;
    background-color: #fff;
	border-radius: 3px;
}

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

#editor_next {
	height: 44px;
	border: none;
	background-color: transparent;
	margin: 0 !important;
	border-radius: 0;
	float: left;
	padding: 5px 8px;
}

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

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

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

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

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

/* This is to hide the saved time when getting narrow */
@media(max-width: 540px) {
	#editor_controls small.lastsaved, div.editor_separator.lastsaved_separator {
		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);
}

small.unsaved-star {
	position:absolute;
	padding: 9px 0 0 4px;
	display: inline-block;
}