~ubuntu-branches/debian/jessie/wordpress/jessie

« back to all changes in this revision

Viewing changes to wp-includes/js/tinymce/themes/advanced/skins/wp_theme/dialog.css

  • Committer: Package Import Robot
  • Author(s): Craig Small
  • Date: 2014-04-17 20:56:19 UTC
  • mfrom: (1.2.35)
  • Revision ID: package-import@ubuntu.com-20140417205619-nurbet6eho4yvwfv
Tags: 3.9+dfsg-1
* New upstream release
* 3.9 seems to handle different locations for plugins so the
  plugin directory handling patches have been cut back.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@import url('//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=latin-ext,latin');
2
 
 
3
 
/* Generic */
4
 
body {
5
 
font-family: "Open Sans", sans-serif;
6
 
font-size:13px;
7
 
background:#fcfcfc;
8
 
padding:0;
9
 
margin:8px 8px 0 8px;
10
 
}
11
 
 
12
 
textarea {resize:none;outline:none;}
13
 
 
14
 
a:link, a:hover {
15
 
        color: #2B6FB6;
16
 
}
17
 
 
18
 
a:visited {
19
 
        color: #3C2BB6;
20
 
}
21
 
 
22
 
.nowrap {white-space: nowrap}
23
 
 
24
 
/* Forms */
25
 
form {margin: 0;}
26
 
fieldset {margin:0; padding:4px; border:1px solid #dfdfdf; font-family:Verdana, Arial; font-size:10px;}
27
 
legend {color:#2B6FB6; font-weight:bold;}
28
 
label.msg {display:none;}
29
 
label.invalid {color:#EE0000; display:inline;}
30
 
input.invalid {border:1px solid #EE0000;}
31
 
input {background:#FFF; border:1px solid #dfdfdf;}
32
 
input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
33
 
input, select, textarea {border:1px solid #dfdfdf;}
34
 
input.radio {border:1px none #000000; background:transparent; vertical-align:middle;}
35
 
input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;}
36
 
.input_noborder {border:0;}
37
 
 
38
 
/* Buttons */
39
 
#insert,
40
 
#cancel,
41
 
#apply,
42
 
.mceActionPanel .button,
43
 
input.mceButton,
44
 
.updateButton {
45
 
        display: inline-block;
46
 
        text-decoration: none;
47
 
        border: 1px solid #adadad;
48
 
        margin: 0;
49
 
        padding: 0 10px 1px;
50
 
        font-size: 13px;
51
 
        height: 24px;
52
 
        line-height: 22px;
53
 
        color: #333;
54
 
        cursor: pointer;
55
 
        -webkit-border-radius: 3px;
56
 
        -webkit-appearance: none;
57
 
        border-radius: 3px;
58
 
        white-space: nowrap;
59
 
        -webkit-box-sizing: border-box;
60
 
        -moz-box-sizing: border-box;
61
 
        box-sizing: border-box;
62
 
        background: #fafafa;
63
 
        background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#e9e9e9));
64
 
        background-image: -webkit-linear-gradient(top, #fafafa, #e9e9e9);
65
 
        background-image: -moz-linear-gradient(top, #fafafa, #e9e9e9);
66
 
        background-image: -o-linear-gradient(top, #fafafa, #e9e9e9);
67
 
        background-image: linear-gradient(to bottom, #fafafa, #e9e9e9);
68
 
        
69
 
        text-shadow: 0 1px 0 #fff;
70
 
        -webkit-box-shadow: inset 0 1px 0 #fff;
71
 
        -moz-box-shadow: inset 0 1px 0 #fff;
72
 
        box-shadow: inset 0 1px 0 #fff;
73
 
}
74
 
 
75
 
#insert {
76
 
        background: #2ea2cc;
77
 
        background: -webkit-gradient(linear, left top, left bottom, from(#2ea2cc), to(#1e8cbe));
78
 
        background: -webkit-linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%);
79
 
        background: linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%);
80
 
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ea2cc', endColorstr='#1e8cbe',GradientType=0 );
81
 
        border-color: #0074a2;
82
 
        -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
83
 
        box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
84
 
        color: #fff;
85
 
        text-decoration: none;
86
 
        text-shadow: 0 1px 0 rgba(0,86,132,0.7);
87
 
}
88
 
 
89
 
#cancel:hover,
90
 
input.mceButton:hover,
91
 
.updateButton:hover,
92
 
#cancel:focus,
93
 
input.mceButton:focus,
94
 
.updateButton:focus {
95
 
        background: #f3f3f3;
96
 
        background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
97
 
        background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
98
 
        background-image: -moz-linear-gradient(top, #fff, #f3f3f3);
99
 
        background-image: -ms-linear-gradient(top, #fff, #f3f3f3);
100
 
        background-image: -o-linear-gradient(top, #fff, #f3f3f3);
101
 
        background-image: linear-gradient(to bottom, #fff, #f3f3f3);
102
 
        border-color: #999;
103
 
        color: #222;
104
 
}
105
 
 
106
 
#insert:hover,
107
 
#insert:focus {
108
 
        background: #1e8cbe;
109
 
        background: -webkit-gradient(linear, left top, left bottom, from(#1e8cbe), to(#0074a2));
110
 
        background: -webkit-linear-gradient(top, #1e8cbe 0%,#0074a2 100%);
111
 
        background: linear-gradient(top, #1e8cbe 0%,#0074a2 100%);
112
 
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e8cbe', endColorstr='#0074a2',GradientType=0 );
113
 
        border-color: #0074a2;
114
 
        -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
115
 
        box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
116
 
        color: #fff;
117
 
}
118
 
 
119
 
.mceActionPanel #insert {
120
 
        float: right;
121
 
}
122
 
 
123
 
/* Browse */
124
 
a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;}
125
 
.mceOldBoxModel a.browse span {width:22px; height:20px;}
126
 
a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;}
127
 
a.browse span.disabled {border:1px solid white; -moz-opacity:0.3; opacity:0.3; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);}
128
 
a.browse:hover span.disabled {border:1px solid white; background-color:transparent;}
129
 
a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;}
130
 
.mceOldBoxModel a.pickcolor span {width:21px; height:17px;}
131
 
a.pickcolor:hover span {background-color:#B2BBD0;}
132
 
a.pickcolor, a.browse {text-decoration:none}
133
 
div.iframecontainer {background: #fff;}
134
 
 
135
 
/* Charmap */
136
 
table.charmap {border:1px solid #AAA; text-align:center}
137
 
td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;}
138
 
#charmap a {display:block; color:#000; text-decoration:none; border:0}
139
 
#charmap a:hover {background:#CCC;color:#2B6FB6}
140
 
#charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center}
141
 
#charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center}
142
 
#charmap #charmapView {background-color:#fff;}
143
 
 
144
 
/* Source */
145
 
.wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;}
146
 
.mceActionPanel {margin-top:5px;}
147
 
 
148
 
/* Tabs classes */
149
 
.tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;}
150
 
.tabs ul {margin:0; padding:0; list-style:none;}
151
 
.tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;}
152
 
.tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;}
153
 
.tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;}
154
 
.tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;}
155
 
.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
156
 
.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
157
 
 
158
 
.wp-core-ui #tabs {
159
 
        padding-bottom: 5px;
160
 
        background-color: transparent;
161
 
}
162
 
 
163
 
.wp-core-ui #tabs a {
164
 
        padding: 6px 10px;
165
 
        margin: 0 2px;
166
 
}
167
 
 
168
 
/* Panels */
169
 
.panel_wrapper div.panel {display:none;}
170
 
.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
171
 
.panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;}
172
 
 
173
 
/* Columns */
174
 
.column {float:left;}
175
 
.properties {width:100%;}
176
 
.properties .column1 {}
177
 
.properties .column2 {text-align:left;}
178
 
 
179
 
/* Titles */
180
 
h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;}
181
 
h3 {font-size:14px;}
182
 
.title {font-size:12px; font-weight:bold; color:#2B6FB6;}
183
 
 
184
 
/* Dialog specific */
185
 
#link .panel_wrapper, #link div.current {height:125px;}
186
 
#image .panel_wrapper, #image div.current {height:200px;}
187
 
#plugintable thead {font-weight:bold; background:#DDD;}
188
 
#plugintable, #about #plugintable td {border:1px solid #919B9C;}
189
 
#plugintable {width:96%; margin-top:10px;}
190
 
#pluginscontainer {height:290px; overflow:auto;}
191
 
#colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px}
192
 
#colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline}
193
 
#colorpicker #preview_wrapper {text-align:center; padding-top:4px; white-space: nowrap; float: right;}
194
 
#colorpicker #insert, #colorpicker #cancel {width: 90px}
195
 
#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
196
 
#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
197
 
#colorpicker #light div {overflow:hidden;}
198
 
#colorpicker .panel_wrapper div.current {height:175px;}
199
 
#colorpicker #namedcolors {width:150px;}
200
 
#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
201
 
#colorpicker #colornamecontainer {margin-top:5px;}
202
 
#colorpicker #picker_panel fieldset {margin:auto;width:325px;}
203
 
 
204
 
 
205
 
/* Localization */ 
206
 
 
207
 
body[dir="rtl"],
208
 
body[dir="rtl"] fieldset,
209
 
body[dir="rtl"] input, body[dir="rtl"] select, body[dir="rtl"]  textarea,
210
 
body[dir="rtl"]  #charmap #codeN,
211
 
body[dir="rtl"] .tabs a {
212
 
        font-family: Tahoma, sans-serif;
213
 
}
 
 
b'\\ No newline at end of file'