Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. diff --git a/design/backend/css/tygh/ui_base/inputs.less b/design/backend/css/tygh/ui_base/inputs.less
  2. index f9dc9a19d4..507dd50bb0 100644
  3. --- a/design/backend/css/tygh/ui_base/inputs.less
  4. +++ b/design/backend/css/tygh/ui_base/inputs.less
  5. @@ -538,6 +538,23 @@ input[type="checkbox"] {
  6. }
  7. }
  8.  
  9. + &:indeterminate {
  10. + background: @mainColor;
  11. + outline-color: @mainColor;
  12. + position: relative;
  13. +
  14. + &:after {
  15. + content: "\f068";
  16. + font-family: FontAwesome;
  17. +
  18. + position: absolute;
  19. + color: white;
  20. +
  21. + top: 0px;
  22. + left: 0.5px;
  23. + }
  24. + }
  25. +
  26. &:disabled {
  27. background: #888;
  28. outline-color: #888;
  29. @@ -560,4 +577,11 @@ input[type="checkbox"].checkbox--large {
  30. top: 0px;
  31. left: 0px;
  32. }
  33. +
  34. + &:indeterminate {
  35. + &:after {
  36. + padding-top: 6px;
  37. + padding-left: 6.5px;
  38. + }
  39. + }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement