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.

_security.scss 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .security {
  2. &-dialog {
  3. color: #fff;
  4. font-size: 0.875rem;
  5. line-height: 1.5rem;
  6. &.password-section {
  7. display: flex;
  8. flex-direction: column;
  9. .description {
  10. font-size: 0.75rem;
  11. }
  12. .password {
  13. align-items: flex-start;
  14. display: flex;
  15. justify-content: flex-start;
  16. margin-top: 15px;
  17. flex-direction: column;
  18. &-actions {
  19. margin-top: 10px;
  20. button {
  21. cursor: pointer;
  22. text-decoration: none;
  23. font-size: 0.875rem;
  24. color: #6FB1EA;
  25. }
  26. & > :not(:last-child) {
  27. margin-right: 24px;
  28. }
  29. }
  30. }
  31. }
  32. .separator-line {
  33. margin: 24px 0 24px -20px;
  34. padding: 0 20px;
  35. width: 100%;
  36. height: 1px;
  37. background: #5E6D7A;
  38. &:last-child {
  39. display: none;
  40. }
  41. }
  42. }
  43. }
  44. .new-toolbox .toolbox-content .toolbox-icon.toggled.security-toolbar-button {
  45. border-width: 0;
  46. &:not(:hover) {
  47. background: unset;
  48. }
  49. }