_list-group.scss 581 B

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