preferences.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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, td {
  43. text-align: left;
  44. padding: 0.25em;
  45. }
  46. th:first-child, td:first-child {
  47. padding-right: 4em;
  48. }
  49. &>tbody>tr:nth-child(even)>th,
  50. &>tbody>tr:nth-child(even)>td {
  51. background-color: @color-settings-tr-hover;
  52. }
  53. }
  54. .name, .shortcut {
  55. text-align: left;
  56. }
  57. .preferences_back {
  58. background: none repeat scroll 0 0 @color-settings-return-background;
  59. color: white;
  60. border: 0 none;
  61. .rounded-corners;
  62. cursor: pointer;
  63. display: inline-block;
  64. margin: 2px 4px;
  65. padding: 0.5em;
  66. a {
  67. display: block;
  68. color: @color-settings-return-font;
  69. }
  70. a::first-letter {
  71. text-transform: uppercase;
  72. }
  73. }
  74. div.selectable_url {
  75. pre {
  76. width: 100%;
  77. }
  78. }
  79. .engine-tooltip {
  80. display: none;
  81. position: absolute;
  82. padding: 0.5rem 1rem;
  83. margin: 0rem 0 0 2rem;
  84. border: 1px solid #ddd;
  85. background: white;
  86. font-size: 14px;
  87. font-weight: normal;
  88. z-index: 1000000;
  89. }
  90. th:hover .engine-tooltip, .engine-tooltip:hover {
  91. display: inline-block;
  92. }
  93. }
  94. @media screen and (max-width: 75em) {
  95. .preferences_back {
  96. clear: both;
  97. }
  98. }