Dotclear

source: admin/style/jsToolBar/jsToolBar.css @ 1636:ad22a8dc2100

Revision 1636:ad22a8dc2100, 3.7 KB checked in by Anne Kozlika <kozlika@…>, 11 years ago (diff)

Message "No [somewhat] yet/so far/[nothing]" harmonization.
CSS: very little adjustments of colors and borders.

Line 
1.jstEditor {
2     border-width : 0 1px 1px 1px;
3     border-style : solid;
4     border-color : #ccc;
5     background : #f9f9f9;
6}
7.jstEditor textarea, .jstEditor iframe {
8     -webkit-box-sizing: border-box;
9     -moz-box-sizing: border-box;
10     box-sizing: border-box; 
11     margin: 0;
12     border: 2px solid #f9f9f9;
13     width: 100%;
14     padding: .5em 0 0 0;
15}
16.jstHandle {
17     height: 8px;
18     background: #ccc url(resize.png) no-repeat center center;
19     font-size: 0.1em;
20     cursor: s-resize;
21     border-color: #ccc #ccc #ccc #000;
22     border-width: 0 1px 1px 1px;
23     border-style: solid;
24}
25.jstEditor textarea:focus, .jstEditor iframe:focus {
26     border: 2px solid #bee74b;
27}
28.jstElements {
29     height: 28px;
30     padding: 0 1rem; 
31     border: 1px solid #ccc;
32     overflow: hidden; 
33     background: #e1e1e1; 
34     background: -moz-linear-gradient(center top , #f2f2f2, #e1e1e1); 
35     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#e1e1e1)); 
36     -moz-border-radius: 4px 4px 0 0; 
37     -webkit-border-radius: 4px 4px 0 0; 
38     border-radius: 4px 4px 0 0; 
39     -webkit-box-shadow: 0 1px 0 #FFF inset; 
40     -moz-box-shadow: 0 1px 0 #FFF inset; 
41     box-shadow: 0 1px 0 #FFF inset;
42}
43
44.jstElements select, .jstElements button {
45     vertical-align: middle;
46}
47.jstElements select {
48     width: 12em;
49     margin-right: .6rem;
50}
51.jstElements button {
52     width : 30px;
53     height: 28px;
54     border-style: groove;
55     border-width:  0 1px 0 0;
56     border-color: #666;
57     background-color : transparent;
58     background-position : 50% 50%;
59     background-repeat: no-repeat;
60}
61.jstElements button:hover {
62     border-color : #ccc;
63     background-color: #fff;
64}
65.jstElements button span {
66     display : none;     
67}
68.jstElements span {
69     display : inline-block;
70     vertical-align: top;
71     background: #dfdfdf;
72}
73
74.jstSpacer {
75     width : 2px;
76     height: 28px;
77     margin-right: 0;
78     border-style: groove;
79     border-width:  0 1px 0 0;
80     border-color: #666;
81}
82
83.jstSwitcher {
84     display: block;
85     list-style: none;
86     margin: 0;
87     padding: 0 0 5px 0;
88     background: #dfdfdf;
89     border-top: 1px solid #999;
90}
91.jstSwitcher li {
92     display: inline;
93     margin: 0 0 0 5px;
94     padding: 2px 8px;
95}
96.jstSwitcher li.jstSwitcherCurrent {
97     color: #fff;
98     background: #575859;
99     border-radius: 0 0 2px 2px;
100}
101.jstSwitcher a {
102     font-weight: normal;
103     border-bottom: none !important;
104}
105
106/* Buttons
107-------------------------------------------------------- */
108.jstb_strong {
109     background-image: url(bt_strong.png);
110}
111.jstb_em {
112     background-image: url(bt_em.png);
113}
114.jstb_ins {
115     background-image: url(bt_ins.png);
116}
117.jstb_del {
118     background-image: url(bt_del.png);
119}
120.jstb_quote {
121     background-image: url(bt_quote.png);
122}
123.jstb_code {
124     background-image: url(bt_code.png);
125}
126.jstb_paragraph {
127     background-image: url(bt_paragraph.png);
128}
129.jstb_br {
130     background-image: url(bt_br.png);
131}
132.jstb_blockquote {
133     background-image: url(bt_bquote.png);
134}
135.jstb_pre {
136     background-image: url(bt_pre.png);
137}
138.jstb_ul {
139     background-image: url(bt_ul.png);
140}
141.jstb_ol {
142     background-image: url(bt_ol.png);
143}
144.jstb_link {
145     background-image: url(bt_link.png);
146}
147.jstb_img {
148     background-image: url(bt_img.png);
149}
150.jstb_img_select {
151     background-image: url(bt_img_select.png);
152}
153.jstb_post_link {
154     background-image: url(bt_post.png);
155}
156.jstb_removeFormat {
157     background-image: url(bt_clean.png);
158}
159
160/* WYSIWYG Iframe */
161.wysiwygIframe {
162     border-width : 1px;
163     border-style : solid;
164     border-color : #000 #ccc #ccc #000;
165     width : 100%;
166}
167
168/* WYSIWYG Document */
169body.wysiwygDoc {
170     font: 12px "DejaVu Sans","Lucida Grande","Lucida Sans Unicode",Arial,sans-serif;
171     color : #000;
172     background: #f9f9f9;
173     margin: 0;
174     padding : 2px;
175     border: none;
176}
177.wysiwygDoc pre, .wysiwygDoc code, .wysiwygDoc kbd, .wysiwygDoc samp {
178     font-family:"Courier New",Courier,monospace;
179     font-size : 1.1em;
180}
181.wysiwygDoc code {
182     color : #666;
183     font-weight : bold;
184}
185body.wysiwygDoc  > p:first-child {
186     margin-top: 0;
187}
Note: See TracBrowser for help on using the repository browser.

Sites map