Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

123 rader
2.0 KiB

  1. .btn {
  2. border-radius: 0;
  3. white-space: nowrap;
  4. @include transition();
  5. }
  6. .btn-primary {
  7. background-color: $color-imaq;
  8. border-color: $color-imaq;
  9. &:hover,
  10. &:focus,
  11. &:active {
  12. background-color: $color-imaq-dark !important;
  13. border-color: $color-imaq-dark !important;
  14. }
  15. }
  16. body {
  17. .spt-btn-low {
  18. background-color: #a7adb1 !important;
  19. &:hover {
  20. background-color: #75797c !important;
  21. }
  22. }
  23. }
  24. .btn-delete-user {
  25. width: 40px;
  26. text-align: center;
  27. box-sizing: content-box;
  28. }
  29. [data-type="action-icon"] {
  30. font-size: 20px;
  31. }
  32. [data-type="user-tool"] {
  33. cursor: pointer;
  34. font-size: 20px;
  35. @include transition();
  36. &:not(.btn):hover {
  37. color: $color-imaq;
  38. }
  39. &.btn {
  40. &:hover {
  41. background-color: $color-imaq;
  42. }
  43. }
  44. }
  45. [data-action="edit"] {
  46. right: 0;
  47. bottom: 0;
  48. width: auto;
  49. }
  50. [data-action="follow"] {
  51. right: 0;
  52. top: 0;
  53. width: auto;
  54. background: $color-imaq;
  55. color: #fff;
  56. &:before {
  57. @include transition();
  58. }
  59. &:hover:before {
  60. content: "\f415";
  61. color: #fff;
  62. }
  63. &.user-follows {
  64. &:hover:before {
  65. content: "\f417";
  66. color: #fff;
  67. }
  68. }
  69. }
  70. .badge {
  71. border-radius: 0;
  72. background: #2b3b44 !important;
  73. font-weight: 400;
  74. text-transform: uppercase;
  75. @include transition();
  76. &:hover {
  77. background: #556169 !important;
  78. }
  79. }
  80. .spt-icon-details {
  81. display: block;
  82. width: 32px;
  83. height: 32px;
  84. background: #2e3a43 url("/assets/images/icons/details.svg") no-repeat center center;
  85. background-size: 20px auto;
  86. border-color: #2e3a43;
  87. &:hover {
  88. background-color: #6d757c !important;
  89. border-color: #6d757c !important;
  90. }
  91. }
  92. .spt-icon-edit {
  93. display: block;
  94. width: 32px;
  95. height: 32px;
  96. background: #2e3a43 url("/assets/images/icons/icon-edit.svg") no-repeat center center;
  97. background-size: 20px auto;
  98. border-color: #2e3a43;
  99. &:hover {
  100. background-color: #6d757c !important;
  101. border-color: #6d757c !important;
  102. }
  103. }
  104. .spt-icon-unassign {
  105. display: inline-block;
  106. width: 20px;
  107. height: 30px;
  108. @include delete-image();
  109. }