/[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 189 by dpavlin, Tue Nov 29 13:02:53 2005 UTC revision 357 by dpavlin, Sat Jan 7 23:43:38 2006 UTC
# Line 5  DIV, DIV * { Line 5  DIV, DIV * {
5          -moz-box-sizing: border-box !important;          -moz-box-sizing: border-box !important;
6  }  }
7    
 .navigation {  
         background: #e0e0e0;  
         padding: 0.5em;  
         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;  
 }  
   
 .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 73  DIV, DIV * { Line 40  DIV, DIV * {
40    
41  /* define editors */  /* define editors */
42    
43  #div_editors {  .editors {
         display: block;  
         width: 100%;  
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: block;  
         float: left;  
         clear: none;  
         z-index: 2;  
50  }  }
51    
52  /* buttons above textarea */  /* buttons above textarea */
53  .content_toolbar {  .content_toolbar {
54          display: block;          padding: 0.5em;
55  }  }
56    
57  /* buttons and status bar below */  /* buttons and status bar below */
58  .edit_bar {  .edit-bar {
59          display: block;          width: 100%;
60          margin-top: 0.5em;          padding: 0.5em;
         width: 40em;  
61  }  }
62    
63  #div_template_list, #div_css_list {  /* buttons to resize textarea */
64    .resize-bar {
65          display: block;          display: block;
66          min-width: 20em;          float: right;
67    }
68    
69    /* file lists on right side */
70    .file-list {
71            vertical-align: top;
72          color: #000000;          color: #000000;
73          font-size: 70%;          font-size: 70%;
74            width: 100%;
75          margin: 0;          margin: 0;
76          /* margin-left: 50em; */          padding: 0;
         float: right;  
         clear: none;  
77  }  }
78    
79  #div_template_list ul, #div_css_list ul {  .file-list ul {
80          display: block;          margin: 1em;
         width: 100%;  
         z-index: 1;  
81          padding: 0;          padding: 0;
82          margin: 0;          list-style-position: inside;
83  }  }
84    
85  #div_template_list li, #div_css_list li {  .file-list li {
         display: block;  
         width: 100%;  
         margin: 0;  
         margin-left: 1em;  
         margin-bottom: 2px;  
         border: 1px solid #c0c0c0;  
86          list-style-type: none;          list-style-type: none;
87          overflow: hidden;          overflow: hidden;
88          white-space: nowrap;          white-space: nowrap;
89            margin: 4px;
90            border: 1px solid #c0c0c0;
91  }  }
92    
93  #div_template_list a, #div_template_list a:link, #div_template_list a:visited,  .file-list a, .file-list a:link, .file-list a:visited {
 #div_css_list a, #div_css_list a:link, #div_css_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;
98          padding: 4px;          padding: 4px;
         display: block;  
         min-width: 15em;  
99          white-space: nowrap;          white-space: nowrap;
100  }  }
101    
102  #template_list_selected {  .file-list a:hover, .file-list a:hover {
103            background-color: #ffffff;
104            color: #000080;
105    }
106    
107    .file-selected {
108          padding: 4px;          padding: 4px;
         margin: 4px;  
         min-width: 15em;  
         /* font-weight: bold; */  
109  }  }
110    
111  #div_template_list a:hover, #div_css_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 171  DIV, DIV * { Line 152  DIV, DIV * {
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 */
# Line 208  DIV, DIV * { Line 190  DIV, DIV * {
190  .tidy_warning {  .tidy_warning {
191          color: #c0c000;          color: #c0c000;
192  }  }
193    
194    /* error */
195    .error {
196            color: #c00000;
197    }
198    

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

  ViewVC Help
Powered by ViewVC 1.1.26