/[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 259 by dpavlin, Fri Dec 16 13:20:57 2005 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 {  /* file lists on right side */
64          display: block;  .file-list {
65          margin-left: 1em;          vertical-align: top;
         margin: 0;  
66          color: #000000;          color: #000000;
         margin-left: 1em;  
67          font-size: 70%;          font-size: 70%;
68            width: 100%;
69            margin: 0;
70            padding: 0;
71  }  }
72    
73  #div_template_list ul {  .file-list ul {
74          z-index: 1;          margin: 1em;
75            padding: 0;
76            list-style-position: inside;
77  }  }
78    
79  #div_template_list li {  .file-list li {
         margin-left: 1em;  
         border: 1px solid #c0c0c0;  
80          list-style-type: none;          list-style-type: none;
81          overflow: hidden;          overflow: hidden;
82          margin-bottom: 2px;          white-space: nowrap;
83            margin: 4px;
84            border: 1px solid #c0c0c0;
85  }  }
86    
87  #div_template_list a, #div_template_list:link, #div_template_list:visited {  .file-list a, .file-list a:link, .file-list a:visited {
   
88          text-decoration: none;          text-decoration: none;
89            display: block;
90          background-color: #c0c0c0;          background-color: #c0c0c0;
91          color: #ffffff;          color: #ffffff;
         display: block;  
92          padding: 4px;          padding: 4px;
93            white-space: nowrap;
94    }
95    
96    .file-list a:hover, .file-list a:hover {
97            background-color: #ffffff;
98            color: #000080;
99  }  }
100    
101  #template_list_selected {  .file-selected {
102          padding: 4px;          padding: 4px;
 /*      font-weight: bold;*/  
103  }  }
104    
105  #div_template_list a:hover {  .editor-form {
106          background-color: #ffffff;          margin-left: 1em;
         color: #000080;  
107  }  }
108    
109  #div_template, #div_css {  /* record navigation */
110          position: relative;  
111    .navigation {
112            background: #e0e0e0;
113            padding: 0.5em;
114          display: block;          display: block;
115          float: left;          margin: 0;
116            margin-top: 1em;
117  }  }
118    
119    .navigation a, .navigation:link, .navigation:visited {
120            color: #000000;
121            text-decoration: none;
122            background-color: #f0f0f0;
123            border: 1px solid #c0c0c0;
124            padding: 0.2em 0.5em 0.2em 0.4em;
125            -moz-border-radius: 1.5em;
126    }
127    
128    .nav_disable, .nav_disable:link, .nav_disable:visited {
129            background-color: #e0e0e0;
130            border: 1px solid #c0c0c0;
131            color: #c0c0c0;
132    }
133    
134    .navigation a:hover {
135            background-color: #ffffff;
136            color: #000080;
137    }
138    
139    /* notice text */
140  .notice {  .notice {
141          color: #808080;          color: #808080;
142          font-size: 70%;          font-size: 70%;
# Line 150  Line 146 
146    
147  #div_record {  #div_record {
148          clear: left;          clear: left;
         margin-top: 1em;  
149          padding: 1em;          padding: 1em;
150          border: 1px dashed #808080;          margin: 0;
151            border: 1px dashed #e0e0e0;
152            overflow: hidden;
153  }  }
154    
155  /* progress indicator picture */  /* progress indicator picture */
156  #working {  #working {
157          margin-left: 2em;          margin-left: 2em;
158  }  }
159    
160    /* HTML tidy */
161    
162    .tidy {
163            clear: left;
164            border: 2px solid #808080;
165            margin-top: 1em;
166            padding: 1em;
167            color: #808080;
168    }
169    
170    .tidy tt {
171            clear: left;
172            display: block;
173            background-color: #e0e0e0;
174            padding: 2px;
175            margin-left: 2em;
176            color: #000000;
177    }
178    
179    .tidy_error {
180            margin-top: 0.5em;
181            color: #c00000;
182    }
183    
184    .tidy_warning {
185            color: #c0c000;
186    }
187    
188    /* error */
189    .error {
190            color: #c00000;
191    }
192    

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

  ViewVC Help
Powered by ViewVC 1.1.26