_list-group.scss 618 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .list-group {
  2. margin: 1rem 0 0;
  3. padding-bottom: 10px;
  4. }
  5. #maincontainer .list-group-item {
  6. display: list-item;
  7. padding-left: 0;
  8. padding-right: 0;
  9. }
  10. .list-group-item {
  11. border: none;
  12. }
  13. #li_select_server,
  14. #li_change_password,
  15. #li_select_mysql_collation,
  16. #li_user_preferences,
  17. #li_select_lang,
  18. #li_select_theme {
  19. &.list-group-item {
  20. display: block;
  21. padding-top: 10px;
  22. padding-bottom: 10px;
  23. padding-#{$right}: 10px;
  24. padding-#{$left}: 20px;
  25. &:hover {
  26. background: #f6f6f6;
  27. }
  28. }
  29. }
  30. #li_select_theme::after {
  31. content: "Scheme: #{$color-scheme}";
  32. margin-#{$left}: 10px;
  33. }