equal
deleted
inserted
replaced
146 top: -4px; |
146 top: -4px; |
147 } |
147 } |
148 div.toolbar_vert li span { |
148 div.toolbar_vert li span { |
149 padding-left: 2px; |
149 padding-left: 2px; |
150 padding-right: 5px; |
150 padding-right: 5px; |
|
151 } |
|
152 |
|
153 div.toolbar_vert li > span { |
|
154 display: block; |
|
155 padding: 4px 5px; |
151 } |
156 } |
152 |
157 |
153 div.breadcrumbs { margin: 10px 0; padding: 5px; border: 1px solid #AAAAAA; background-color: #E8E8E8; font-size: smaller; font-weight: bold; } |
158 div.breadcrumbs { margin: 10px 0; padding: 5px; border: 1px solid #AAAAAA; background-color: #E8E8E8; font-size: smaller; font-weight: bold; } |
154 |
159 |
155 /* Tables */ |
160 /* Tables */ |
321 height: 0px; |
326 height: 0px; |
322 width: 0px; |
327 width: 0px; |
323 clear: left; |
328 clear: left; |
324 line-height: 0px; |
329 line-height: 0px; |
325 display: block; |
330 display: block; |
326 } |
|
327 |
|
328 /* |
|
329 * Docking Boxes code (for the sidebar editor) |
|
330 */ |
|
331 |
|
332 /* group container(s) */ |
|
333 #sbedit { |
|
334 margin: 0; |
|
335 padding: 0; |
|
336 /* position:relative; /* additional outer containers must also have position:relative */ |
|
337 } |
|
338 /* keyboard navigation tooltip */ |
|
339 .dbx-tooltip { |
|
340 display:block; |
|
341 position:absolute; |
|
342 margin:36px 0 0 125px; |
|
343 width:185px; |
|
344 border:1px solid #000; |
|
345 background:#ffd; |
|
346 color:#000; |
|
347 font:normal normal normal 0.85em tahoma, arial, sans-serif; |
|
348 padding:2px 4px 3px 5px; |
|
349 text-align:left; |
|
350 } |
|
351 * html .dbx-tooltip { width:195px; } |
|
352 |
|
353 /* use CSS2 system colors in CSS2 browsers |
|
354 but not safari, which doesn't support them */ |
|
355 *[class="dbx-tooltip"]:lang(en) { |
|
356 border-color:InfoText; |
|
357 background:InfoBackground; |
|
358 color:InfoText; |
|
359 font:small-caption; |
|
360 font-weight:normal; |
|
361 } |
|
362 /* additional clone styles */ |
|
363 .dbx-clone { |
|
364 opacity: 0.8; |
|
365 } |
|
366 .dbx-content ul { |
|
367 margin: 0; padding: 0; |
|
368 list-style: none; |
|
369 } |
|
370 .dbx-content li a, .dbx-content li a:hover { |
|
371 text-decoration: none; color: #666; |
|
372 } |
|
373 .dbx-content2 { |
|
374 margin: 0px 1px 0px 1px; |
|
375 } |
331 } |
376 |
332 |
377 /* Progress bars */ |
333 /* Progress bars */ |
378 div.progressbar { |
334 div.progressbar { |
379 padding: 2px; |
335 padding: 2px; |
1000 background-image: url(../../../images/loading-big.gif); |
956 background-image: url(../../../images/loading-big.gif); |
1001 background-position: center center; |
957 background-position: center center; |
1002 background-repeat: no-repeat; |
958 background-repeat: no-repeat; |
1003 margin: 0 auto; |
959 margin: 0 auto; |
1004 } |
960 } |
|
961 |
|
962 /** |
|
963 * Sidebar editor |
|
964 */ |
|
965 |
|
966 div.sbedit-block { |
|
967 background-color: #f7f7f7; |
|
968 border: 1px solid #c2c2c2; |
|
969 padding: 4px; |
|
970 width: 150px; |
|
971 margin: 0 7px 5px 0; |
|
972 } |
|
973 |
|
974 div.sbedit-block.disabled { |
|
975 background-color: #ffe2e2; |
|
976 border-color: #c7a1a1; |
|
977 } |
|
978 |
|
979 div.sbedit-handle { |
|
980 background-color: #c7c7c7; |
|
981 border: 1px solid #909090; |
|
982 padding: 2px; |
|
983 margin-bottom: 3px; |
|
984 cursor: move; |
|
985 } |
|
986 |
|
987 div.sbedit-block.disabled div.sbedit-handle { |
|
988 background-color: #c77272; |
|
989 border-color: #aa6060; |
|
990 } |
|
991 |
|
992 div.sbedit-handle input { |
|
993 display: none; |
|
994 width: 96%; |
|
995 } |
|
996 |
|
997 div.sbedit-float { |
|
998 position: absolute; |
|
999 top: 20px; |
|
1000 left: 20px; |
|
1001 } |
|
1002 |
|
1003 td.sbedit-column { |
|
1004 vertical-align: top; |
|
1005 /* 150 + 4*2 + 7 + 3 (the 3 being a trial-and-error computation) */ |
|
1006 width: 168px; |
|
1007 } |
|
1008 |
|
1009 .ui-sortable-placeholder { |
|
1010 background-color: #e2e2e2 !important; |
|
1011 border: 1px dashed #b7b7b7 !important; |
|
1012 visibility: visible !important; |
|
1013 height: 50px !important; |
|
1014 } |
|
1015 |
|
1016 .ui-sortable-helper { |
|
1017 opacity: 0.6; |
|
1018 filter: alpha(opacity=60); |
|
1019 } |
|
1020 |