preferences.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #main_preferences {
  2. form {
  3. width: 100%;
  4. }
  5. fieldset {
  6. margin: 8px;
  7. border: none;
  8. }
  9. legend {
  10. margin: 0;
  11. padding: 5px 0 0 0;
  12. display: block;
  13. float: left;
  14. width: 300px;
  15. }
  16. .value {
  17. margin: 0;
  18. padding: 0;
  19. float: left;
  20. width: 15em;
  21. }
  22. .description {
  23. margin: 0;
  24. padding: 5px 0 0 0;
  25. float: left;
  26. width: 50%;
  27. color: darken(#dcdcdc, 30%);
  28. font-size: 90%;
  29. }
  30. select {
  31. width: 200px;
  32. font-size: inherit !important;
  33. }
  34. table {
  35. border-collapse: collapse;
  36. }
  37. table td {
  38. text-align: center;
  39. }
  40. table.cookies {
  41. width: auto;
  42. th,
  43. td {
  44. text-align: left;
  45. padding: 0.25em;
  46. }
  47. th:first-child,
  48. td:first-child {
  49. padding-right: 4em;
  50. }
  51. & > tbody > tr:nth-child(even) > th,
  52. & > tbody > tr:nth-child(even) > td {
  53. background-color: @color-settings-tr-hover;
  54. }
  55. }
  56. .name,
  57. .shortcut {
  58. text-align: left;
  59. }
  60. .preferences_back {
  61. background: none repeat scroll 0 0 @color-settings-return-background;
  62. color: white;
  63. border: 0 none;
  64. .rounded-corners;
  65. cursor: pointer;
  66. display: inline-block;
  67. margin: 2px 4px;
  68. padding: 0.5em;
  69. a {
  70. display: block;
  71. color: @color-settings-return-font;
  72. }
  73. a::first-letter {
  74. text-transform: uppercase;
  75. }
  76. }
  77. div.selectable_url {
  78. pre {
  79. width: 100%;
  80. }
  81. }
  82. }
  83. @media screen and (max-width: 75em) {
  84. .preferences_back {
  85. clear: both;
  86. }
  87. }