source: branches/rsr.v5.1.dev/web/app/plugins/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css @ 1

Last change on this file since 1 was 1, checked in by dj3c1t, 12 years ago

import initial

File size: 2.9 KB
Line 
1/* Hide the advanced tab */
2#advanced_tab {
3        display: none;
4}
5
6#metatitle, #metakeywords, #metadescription, #metaauthor, #metacopyright {
7        width: 280px;
8}
9
10#doctype, #docencoding {
11        width: 200px;
12}
13
14#langcode {
15        width: 30px;
16}
17
18#bgimage {
19        width: 220px;   
20}
21
22#fontface {
23        width: 240px;
24}
25
26#leftmargin, #rightmargin, #topmargin, #bottommargin {
27        width: 50px;
28}
29
30.panel_wrapper div.current {
31        height: 400px;
32}
33
34#stylesheet, #style {
35        width: 240px;
36}
37
38/* Head list classes */
39
40.headlistwrapper {
41        width: 100%;
42}
43
44.addbutton, .removebutton, .moveupbutton, .movedownbutton {
45        border-top: 1px solid;
46        border-left: 1px solid;
47        border-bottom: 1px solid;
48        border-right: 1px solid;
49        border-color: #F0F0EE;
50        cursor: default;
51        display: block;
52        width: 20px;
53        height: 20px;
54}
55
56.addbutton:hover, .removebutton:hover, .moveupbutton:hover, .movedownbutton:hover {
57        border: 1px solid #0A246A;
58        background-color: #B6BDD2;
59}
60
61.addbutton {
62        background-image: url('../images/add.gif');
63        float: left;
64        margin-right: 3px;
65}
66
67.removebutton {
68        background-image: url('../images/remove.gif');
69        float: left;
70}
71
72.moveupbutton {
73        background-image: url('../images/move_up.gif');
74        float: left;
75        margin-right: 3px;
76}
77
78.movedownbutton {
79        background-image: url('../images/move_down.gif');
80        float: left;
81}
82
83.selected {
84        border: 1px solid #0A246A;
85        background-color: #B6BDD2;
86}
87
88.toolbar {
89        width: 100%;
90}
91
92#headlist {
93        width: 100%;
94        margin-top: 3px;
95        font-size: 11px;
96}
97
98#info, #title_element, #meta_element, #script_element, #style_element, #base_element, #link_element, #comment_element, #unknown_element {
99        display: none;
100}
101
102#addmenu {
103        position: absolute;
104        border: 1px solid gray;
105        display: none;
106        z-index: 100;
107        background-color: white;
108}
109
110#addmenu a {
111        display: block;
112        width: 100%;
113        line-height: 20px;
114        text-decoration: none;
115        background-color: white;
116}
117
118#addmenu a:hover {
119        background-color: #B6BDD2;
120        color: black;
121}
122
123#addmenu span {
124        padding-left: 10px;
125        padding-right: 10px;
126}
127
128#updateElementPanel {
129        display: none;
130}
131
132#script_element .panel_wrapper div.current {
133        height: 108px;
134}
135
136#style_element .panel_wrapper div.current {
137        height: 108px;
138}
139
140#link_element  .panel_wrapper div.current {
141        height: 140px;
142}
143
144#element_script_value {
145        width: 100%;
146        height: 100px;
147}
148
149#element_comment_value {
150        width: 100%;
151        height: 120px;
152}
153
154#element_style_value {
155        width: 100%;
156        height: 100px;
157}
158
159#element_title, #element_script_src, #element_meta_name, #element_meta_content, #element_base_href, #element_link_href, #element_link_title {
160        width: 250px;
161}
162
163.updateElementButton {
164        margin-top: 3px;
165}
166
167/* MSIE specific styles */
168
169* html .addbutton, * html .removebutton, * html .moveupbutton, * html .movedownbutton {
170        width: 22px;
171        height: 22px;
172}
173
174textarea {
175        height: 55px;
176}
177
178.panel_wrapper div.current {height:420px;}
Note: See TracBrowser for help on using the repository browser.