/[webpac2]/Webpacus/root/editor/editor.css
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /Webpacus/root/editor/editor.css

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 163 by dpavlin, Sat Nov 26 18:18:10 2005 UTC revision 193 by dpavlin, Tue Nov 29 14:31:26 2005 UTC
# Line 1  Line 1 
1  #div_css {  /* record browsing */
2    
3    DIV, DIV * {
4            box-sizing: border-box !important;
5            -moz-box-sizing: border-box !important;
6    }
7    
8    .navigation {
9            background: #e0e0e0;
10            padding: 0.5em;
11          display: block;          display: block;
12  }  }
13    
14    .navigation a, .navigation:link, .navigation:visited {
15            color: #000000;
16            text-decoration: none;
17            background-color: #f0f0f0;
18            border: 1px solid #c0c0c0;
19            padding: 0.2em 0.5em 0.2em 0.4em;
20            -moz-border-radius: 1.5em;
21    }
22    
23    .nav_disable, .nav_disable:link, .nav_disable:visited {
24            background-color: #e0e0e0;
25            border: 1px solid #c0c0c0;
26            color: #c0c0c0;
27    }
28    
29    .navigation a:hover {
30            background-color: #ffffff;
31            color: #000080;
32    }
33    
34    /*
35    #div_record_nr {
36            width: 5em;
37            border: 1px solid #ff0000;
38    }
39    */
40    
41  #div_editor_toolbar {  #div_editor_toolbar {
42          margin-top: 0.5em;          margin-top: 0.5em;
43  }  }
# Line 10  Line 46 
46          display: inline;          display: inline;
47          padding: 3px 0.5em 3px 0.5em;          padding: 3px 0.5em 3px 0.5em;
48          text-decoration: none;          text-decoration: none;
         color: #000000;  
49          -moz-border-radius-topleft: 1.5em;          -moz-border-radius-topleft: 1.5em;
50          -moz-border-radius-topright: 1.5em;          -moz-border-radius-topright: 1.5em;
51  }  }
52    
53  .tab, .tab:link, .tab:visited  {  .tab, .tab:link, .tab:visited  {
54          background-color: #c0c0c0;          background-color: #c0c0c0;
55            color: #ffffff;
56  }  }
57    
58  .tab_selected, .tab_selected:link, .tab_selected:visited {  .tab_selected, .tab_selected:link, .tab_selected:visited {
59          background-color: #f0f0e0;          background-color: #f0f0f0;
60            border-top: 1px solid #c0c0c0;
61            border-left: 1px solid #c0c0c0;
62            border-right: 1px solid #c0c0c0;
63            color: #000000;
64    }
65    
66    .tab:hover {
67            background-color: #ffffff;
68            color: #000080;
69            border-top: 1px solid #c0c0c0;
70            border-left: 1px solid #c0c0c0;
71            border-right: 1px solid #c0c0c0;
72    }
73    
74    /* define editors */
75    
76    .editors {
77            background-color: #f0f0f0;
78          border: 1px solid #c0c0c0;          border: 1px solid #c0c0c0;
79            margin: 0;
80            padding: 0;
81            overflow: hidden;
82            width: 100%;
83  }  }
84    
85  #div_template_list {  /* buttons above textarea */
86          display: inline;  .content_toolbar {
87          border: 2px solid #ffcc88;          padding: 0.5em;
         float: right;  
         z-index: 10;  
88  }  }
89    
90  #div_editors {  /* buttons and status bar below */
91          display: block;  .edit-bar {
92            width: 100%;
93            padding: 0.5em;
94    }
95    
96    /* file lists on right side */
97    .file-list {
98            vertical-align: top;
99            color: #000000;
100            font-size: 70%;
101            width: 100%;
102            margin: 0;
103            padding 0;
104    }
105    
106    .file-list ul {
107            margin: 0;
108            padding 0;
109            list-style-position: inside;
110    }
111    
112    .file-list li {
113            padding 0;
114            list-style-type: none;
115            overflow: hidden;
116            white-space: nowrap;
117            margin: 4px;
118            border: 1px solid #c0c0c0;
119  }  }
120    
121  #div_template, #div_css {  .file-list a, .file-list a:link, .file-list a:visited {
122          position: relative;          text-decoration: none;
123          display: block;          display: block;
124          clear: left;          background-color: #c0c0c0;
125            color: #ffffff;
126            padding: 4px;
127            white-space: nowrap;
128    }
129    
130    .file-list a:hover, .file-list a:hover {
131            background-color: #ffffff;
132            color: #000080;
133    }
134    
135    .file-selected {
136            padding: 4px;
137    }
138    
139    /*
140    .editor-form {
141            border: 2px dashed #ff0000;
142  }  }
143    */
144    
145    
146    /* notice text */
147    .notice {
148            color: #808080;
149            font-size: 70%;
150    }
151    
152    /* define record */
153    
154  #div_record {  #div_record {
         display: block;  
155          clear: left;          clear: left;
156          margin-top: 1em;          margin-top: 1em;
         border-top: 1px solid #e0e0e0;  
157          padding: 1em;          padding: 1em;
158            border: 1px dashed #808080;
159  }  }
160    
161  .notice {  /* progress indicator picture */
162    #working {
163            margin-left: 2em;
164    }
165    
166    /* HTML tidy */
167    
168    .tidy {
169            clear: left;
170            border: 2px solid #808080;
171            margin-top: 1em;
172            padding: 1em;
173          color: #808080;          color: #808080;
         font-size: 70%;  
174  }  }
175    
176  .template_form {  .tidy tt {
177          background-color: #e0e0ff;          clear: left;
178            display: block;
179            background-color: #e0e0e0;
180            padding: 2px;
181            margin-left: 2em;
182            color: #000000;
183  }  }
184  .css_form {  
185          border-color: #ffffe0;  .tidy_error {
186            margin-top: 0.5em;
187            color: #c00000;
188  }  }
189    
190  .navigation {  .tidy_warning {
191          background: #e0e0e0;          color: #c0c000;
         padding: 0.5em;  
         display: block;  
192  }  }

Legend:
Removed from v.163  
changed lines
  Added in v.193

  ViewVC Help
Powered by ViewVC 1.1.26