You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

160 lines
3.1 KiB

  1. a {
  2. color: @ini_existing;
  3. font-weight: 500;
  4. }
  5. // quick fix, thanks @rjahn
  6. #mediamanager__page li div.li {
  7. display: initial;
  8. padding-left: 7px;
  9. }
  10. #mediamanager__page ul.thumbs li dt {
  11. padding-bottom: 18px;
  12. }
  13. #mediamanager__page ul.thumbs li dd {
  14. margin-left: 0;
  15. }
  16. //media manager styling fix
  17. .panel, .panelContent {
  18. height: auto !important;
  19. }
  20. //other fixes
  21. .plugin_translation{
  22. a{
  23. color: rgba(0, 0, 0, 0.92) !important;
  24. background: transparent !important;
  25. }
  26. }
  27. .picker {
  28. z-index: 99999;
  29. .pickerbutton {
  30. background: white;
  31. border: none;
  32. margin: 0px;
  33. ._shadow_1dp;
  34. }
  35. .toolbutton {
  36. background: white;
  37. border: none;
  38. margin: 0px;
  39. ._shadow_1dp;
  40. }
  41. }
  42. // BELOW YOU WILL FIND MODIFIED COMPONENTS TAKEN FROM MDL.
  43. //
  44. // Take a look at MDL here: https://getmdl.io/
  45. // All MDL components used in this project are licensed under Apache License 2.0
  46. .mdl-layout__container{
  47. height: 100vh;
  48. }
  49. .mdl-layout.mdl-js-layout{
  50. min-height: 100vh;
  51. }
  52. .mdl-layout-title {
  53. flex-shrink: 1;
  54. overflow: hidden;
  55. text-overflow: ellipsis;
  56. white-space: nowrap;
  57. min-width: 0;
  58. }
  59. .mdl-button.mdl-button--colored {
  60. color: @ini_primary;
  61. }
  62. .mdl-button--fab.mdl-button--colored {
  63. background: @ini_accent;
  64. color: rgb(255,255,255); }
  65. .mdl-button--fab.mdl-button--colored:hover {
  66. background: @ini_accent;}
  67. .mdl-button--fab.mdl-button--colored:focus:not(:active) {
  68. background: @ini_accent;}
  69. .mdl-button--fab.mdl-button--colored:active {
  70. background: @ini_accent;}
  71. .mdl-mini-footer {
  72. margin: 0;
  73. }
  74. .mdl-navigation {
  75. padding-top: 0px !important;
  76. }
  77. .mdl-navigation__link {
  78. color: @light_secondary !important;
  79. opacity: 1 !important;
  80. }
  81. .mdl-layout__drawer {
  82. overflow: overlay;
  83. ._shadow_3dp;
  84. background: rgb(24,31,105);
  85. background: @primary_dark;
  86. border: none;
  87. color: @light_secondary;
  88. }
  89. .mdl-layout__drawer--out {
  90. width: 18.5em;
  91. }
  92. .mdl-layout__drawer.is-visible {
  93. left: 0;
  94. }
  95. .mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover {
  96. background-color: @primary; }
  97. .mdl-layout__drawer .mdl-navigation .mdl-navigation__link--current {
  98. background-color: @primary;}
  99. @media screen and (max-width: 1024px) {
  100. .mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover {
  101. background-color: @primary; }
  102. .mdl-layout__drawer .mdl-navigation .mdl-navigation__link--current {
  103. background-color: @primary;}
  104. }
  105. .mdl-layout__drawer-button {
  106. color: @dark_icon_active;
  107. }
  108. .mdl-layout__content {
  109. background: @background_white;
  110. display: flex;
  111. flex-direction: column;
  112. }
  113. .mdl-layout__header .mdl-layout__drawer-button {
  114. color: @dark_icon_active;
  115. }
  116. @media screen and (max-width: 1024px) {
  117. .mdl-layout__drawer-button {
  118. color: @dark_icon_active; } }
  119. .mdl-layout__header {
  120. background-color: @header_white;
  121. color: @dark_primary;
  122. }
  123. .mdl-layout__header-row {
  124. background-color: @header_white;
  125. color: @dark_primary;
  126. }
  127. .mdl-textfield--floating-label.has-placeholder .mdl-textfield__label {
  128. color: @ini_primary;
  129. }
  130. .mdl-textfield__label:after {
  131. background-color: @ini_primary;}