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

Legend:
Removed from v.179  
changed lines
  Added in v.357

  ViewVC Help
Powered by ViewVC 1.1.26