Changeset 1492:a7112dcc916c for admin/style/default.css
- Timestamp:
- 08/20/13 11:01:52 (12 years ago)
- Branch:
- twig
- Parents:
- 1491:2b9253624dbe (diff), 1486:602b24e80834 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r1490 r1492 420 420 #login-screen { 421 421 display: block; 422 width: 18em;422 width: 20em; 423 423 margin: 1.5em auto 0; 424 424 font-size: 1.4rem; … … 431 431 margin-left: 0; 432 432 } 433 #login-screen fieldset, #login-screen.fieldset {433 #login-screen .fieldset { 434 434 border: 1px solid #A8DC26; 435 435 padding: 1em 1em 0 1em; … … 437 437 background: #fff; 438 438 } 439 #login-screen legend {440 border: 1px solid #A8DC26;441 }442 439 #login-screen input[type=text], #login-screen input[type=password], #login-screen input[type=submit] { 443 440 width: 100%; … … 448 445 } 449 446 #login-screen #issue strong {font-weight: normal;} 450 451 447 452 448 /* ------------------------------------------------------------------ dashboard */ … … 481 477 #icons a img { 482 478 padding: 2em; 483 background: #eee; 484 border-radius: 1.6rem; 485 box-shadow: 0 3px 3px 0 #ccc; 486 margin-bottom: .6rem; 479 margin-bottom: .3em; 480 -moz-box-shadow: 0px 1px 0px 0px #ffffff; 481 -webkit-box-shadow: 0px 1px 0px 0px #ffffff; 482 box-shadow: 0px 1px 0px 0px #ffffff; 483 background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) ); 484 background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% ); 485 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9'); 486 background-color:#f9f9f9; 487 -moz-border-radius:1em; 488 -webkit-border-radius:1em; 489 border-radius:1em; 490 border:1px solid #dcdcdc; 491 display:inline-block; 487 492 } 488 493 #icons a img:hover, #icons a:focus img { 489 background -color: #BBDB58;494 background: #BBDB58; 490 495 } 491 496 #icons a:focus span, #icons a:hover span { … … 501 506 #quick p.qinfo { 502 507 margin: -.7em -1em 1em; 503 background: # eef url(info.png) no-repeat .2em .2em;508 background: #f3f3ff url(info.png) no-repeat .2em .2em; 504 509 border: 1px solid #99f; 505 510 padding: .2em 1em .1em 24px; … … 541 546 } 542 547 548 #upg-notify { 549 } 550 #upg-notify ul { 551 padding-left: 15px; 552 } 553 #upg-notify li { 554 color: #fff; 555 } 543 556 /* ------------------------------------------------------------------ post */ 544 557 #entry-wrapper { … … 1201 1214 } 1202 1215 table.settings th, table.prefs th { 1203 background: # eef;1216 background: #f3f3ff; 1204 1217 } 1205 1218 table.settings th:first-child, table.prefs th:first-child { … … 1340 1353 } 1341 1354 p.form-note.info { 1342 background: #f5eaff url(info.png) no-repeat .3em . 2em;1355 background: #f5eaff url(info.png) no-repeat .3em .3em; 1343 1356 border: 1px solid #ddbaff; 1344 1357 } … … 1415 1428 a.submit { 1416 1429 display: inline-block; 1417 outline: none;1418 1430 cursor: pointer; 1419 1431 text-align: center; 1420 1432 text-decoration: none; 1421 1433 padding: .1em .5em; 1422 text-shadow: 0 1px 1px rgba(0,0,0,.3);1423 1434 border-radius: .2em; 1424 1435 margin-bottom: .1em; 1425 } 1436 font-size: 1.2rem; 1437 } 1426 1438 h4 a.button {font-weight: normal;} 1427 1439 … … 1431 1443 a.submit { 1432 1444 color: #fff; 1433 border: 1px solid #2373A8; 1434 background: #2373A8; 1435 background: -webkit-gradient(linear, left top, left bottom, from(#2C8FD1), to(#2373A8)); 1436 background: -moz-linear-gradient(top, #2C8FD1, #2373A8); 1445 text-shadow: 0 -1px 1px #1A87B9; 1446 background:#25A6E1; 1447 background:-moz-linear-gradient(top,#25A6E1 0%,#188BC0 100%); 1448 background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#25A6E1),color-stop(100%,#188BC0)); 1449 background:linear-gradient(top,#25A6E1 0%,#188BC0 100%); 1450 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#25A6E1',endColorstr='#188BC0',GradientType=0); 1451 border:1px solid #2C8FD1; 1452 1437 1453 } 1438 1454 input[type=submit]:hover, … … 1442 1458 input[type=button]:focus, 1443 1459 a.submit:focus { 1444 background: #2373A8;1445 background: -webkit-gradient(linear, left top, left bottom, from(#2373A8), to(#2C8FD1));1446 background: -moz-linear-gradient(top, #2373A8, #2C8FD1);1447 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2373A8', endColorstr='#2C8FD1');1448 border: 1px solid #2C8FD1;1460 background:#188BC0; 1461 background:-moz-linear-gradient(top,#188BC0 0%,#25A6E1 100%); 1462 background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#188BC0),color-stop(100%,#25A6E1)); 1463 background:linear-gradient(top,#188BC0 0%,#25A6E1 100%); 1464 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#25A6E1',endColorstr='#25A6E1',GradientType=0); 1449 1465 } 1450 1466 /* suppression et reset */ … … 1457 1473 background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#dfdfdf)); 1458 1474 background: -moz-linear-gradient(top, #f5f5f5, #dfdfdf); 1459 text-shadow: none;1475 text-shadow:1px 1px 0px #fff; 1460 1476 } 1461 1477 a.button:hover, … … 1467 1483 input[type=submit].reset:focus, 1468 1484 input[type=submit].delete:focus { 1469 background: #dfdfdf;1470 background: -webkit-gradient(linear, left top, left bottom, from(#dfdfdf), to(#f5f5f5));1471 background: -moz-linear-gradient(top, #dfdfdf, #f5f5f5);1472 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5', endColorstr='#f5f5f5');1485 background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) ); 1486 background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% ); 1487 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9'); 1488 background-color:#e9e9e9; 1473 1489 } 1474 1490 a.delete, … … 1509 1525 font-size: 1.4rem; 1510 1526 } 1511 .button.add:hover, .button.add: focus {1527 .button.add:hover, .button.add:active, .button.add:focus { 1512 1528 background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) ); 1513 1529 background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% ); … … 1615 1631 border-color : #ccc; 1616 1632 background-color: #fff; 1633 } 1634 1635 /* --------------------------------------------------------------- password indcator */ 1636 .pw-table { 1637 display: table; 1638 margin-bottom: 1em; 1639 } 1640 .pw-cell { 1641 display: table-cell; 1642 margin-bottom: 1em; 1643 } 1644 #pwindicator { 1645 display: table-cell; 1646 vertical-align: bottom; 1647 padding-left: 1.5em; 1648 height: 3.8em; 1649 } 1650 #pwindicator .bar { 1651 height: 6px; 1652 margin-bottom: 4px; 1653 } 1654 .pw-very-weak .bar { 1655 background: #900; 1656 width: 30px; 1657 } 1658 .pw-weak .bar { 1659 background: #c00; 1660 width: 60px; 1661 } 1662 .pw-mediocre .bar { 1663 background: #f60; 1664 width: 90px; 1665 } 1666 .pw-strong .bar { 1667 background: #060; 1668 width: 120px; 1669 } 1670 .pw-very-strong .bar { 1671 background: #0c0; 1672 width: 150px; 1617 1673 } 1618 1674
Note: See TracChangeset
for help on using the changeset viewer.