-
Notifications
You must be signed in to change notification settings - Fork 1
/
module.css
146 lines (138 loc) · 2.45 KB
/
module.css
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
145
146
/* ================================
CSS STYLES FOR Module LocalizationEditor
================================
*/
@font-face {
font-family: 'EntypoRegular';
src: url('images/entypo.eot');
src: url('images/entypo.eot?#iefix') format('embedded-opentype'),
url('images/entypo.woff') format('woff'),
url('images/entypo.ttf') format('truetype'),
url('images/entypo.svg#EntypoRegular') format('svg');
font-weight: normal;
font-style: normal;
}
a.entypoButton, a.entypoButton:link, a.entypoButton:visited
{
font-family: EntypoRegular !important;
font-size: 5em;
text-decoration: none;
color: #666;
padding: 4px;
}
a.entypoButton:hover, a.entypoButton:active
{
color: #000;
}
span.entypoIcon
{
font-family: EntypoRegular !important;
color: #666;
}
span.icon16
{
font-size: 3em;
}
a.iconLink, a.iconLink:link, a.iconLink:hover, a.iconLink:visited, a.iconLink:active
{
text-decoration: none;
}
.LabelEditTextClass
{
background-color: White;
}
.EditBox
{
background-color: White;
padding: 6px;
width: 100%;
}
table.fileTable
{
width: 100%;
}
table.fileTable td.fileTable_Header
{
font-weight: bold;
}
table.fileTable td.fileTable_Key
{
width: 20%;
}
table.fileTable td.fileTable_Original
{
width: 40%;
}
table.fileTable td.fileTable_Translated
{
width: 40%;
}
div.suggestions
{
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid black;
position: absolute;
background-color: #ffffff;
}
div.suggestions div
{
cursor: default;
padding: 0px 3px;
}
div.suggestions div.current
{
background-color: #3366cc;
color: white;
}
table.le_tbl tbody tr td
{
vertical-align: top;
}
table.le_tbl tbody tr.le_thdr td
{
font-weight: bold;
}
div.genericLocale
{
display:block;
font-size:large;
font-weight:bold;
margin: 14px 0px 10px 0px;
padding-bottom: 4px;
width: 100%;
border-bottom: 1px dotted #666;
}
div.specificLocale
{
display: inline-block;
padding: 4px;
margin: 2px 4px 2px 0px;
border: 1px solid #eee;
background-color: #666;
}
div.specificLocale a
{
white-space: nowrap;
color: #fff;
font-weight: bold;
text-decoration: none;
}
div.specificLocale a:hover, div.specificLocale a:active
{
color: #ddd;
text-decoration:none;
}
.dialogLine
{
}
.dialogLine span
{
display: inline-block;
min-width: 100px;
font-weight: bold;
}
.dialogLine input
{
width: 350px;
}