comparison public/libervia.css @ 264:2a93f8e6f989

browser_side: added class ToggleStackPanel
author souliane <souliane@mailoo.org>
date Sun, 17 Nov 2013 17:41:54 +0100
parents d3c734669577
children 79970bf6af93
comparison
equal deleted inserted replaced
263:d3c734669577 264:2a93f8e6f989
1295 } 1295 }
1296 1296
1297 .contactGroupButtonCell { 1297 .contactGroupButtonCell {
1298 vertical-align: baseline; 1298 vertical-align: baseline;
1299 width: 55px; 1299 width: 55px;
1300 } 1300
1301 /* StackPanel */
1302
1303 .gwt-StackPanel {
1304 }
1305
1306 .gwt-StackPanel .gwt-StackPanelItem {
1307 background-color: #222;
1308 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’444444′, endColorstr=’#222222’);
1309 background: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#222222));
1310 background: -moz-linear-gradient(top, #444444, #222222);
1311 background-image: -o-linear-gradient(#444444,#222222);
1312 text-decoration: none;
1313 font-weight: bold;
1314 height: 100%;
1315 color: #e7e5e5;
1316 padding: 3px 15px;
1317 /*display: block;*/
1318 border-radius: 1em 1em 1em 1em;
1319 -webkit-border-radius: 1em 1em 1em 1em;
1320 -moz-border-radius: 1em 1em 1em 1em;
1321 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1322 -webkit-transition: color 0.2s linear;
1323 -moz-transition: color 0.2s linear;
1324 -o-transition: color 0.2s linear;
1325 }
1326
1327 .gwt-StackPanel .gwt-StackPanelItem:hover {
1328 background-color: #eee;
1329 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#eee’, endColorstr=’#aaa′);
1330 background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#aaa));
1331 background: -moz-linear-gradient(top, #eee, #aaa);
1332 background-image: -o-linear-gradient(#eee,#aaa);
1333 color: #444;
1334 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
1335 cursor: pointer;
1336 }
1337
1338 .gwt-StackPanel .gwt-StackPanelItem-selected {
1339 background-color: #eee;
1340 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#eee’, endColorstr=’#aaa′);
1341 background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#aaa));
1342 background: -moz-linear-gradient(top, #eee, #aaa);
1343 background-image: -o-linear-gradient(#eee,#aaa);
1344 color: #444;
1345 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
1346 cursor: pointer;
1347 }
1348 }