search-bar.css 770 B

123456789101112131415161718192021222324252627282930313233343536
  1. /***************
  2. * search bars *
  3. ***************/
  4. .search-bar.primary-toolbar,
  5. .search-bar.toolbar,
  6. .search-bar {
  7. padding: 7px;
  8. background-color: @theme_bg_color;
  9. color: @theme_fg_color;
  10. border:none;
  11. }
  12. .search-bar GtkSearchEntry,
  13. .search-bar GtkSearchEntry:focus,
  14. .search-bar.primary-toolbar GtkSearchEntry,
  15. .search-bar.primary-toolbar GtkSearchEntry:focus {
  16. border-radius: 5px;
  17. border-color:transparent;
  18. }
  19. .search-bar .button.close-button {
  20. padding: 4px;
  21. }
  22. .search-bar.toolbar .button {
  23. border: none;
  24. background: none;
  25. color: @theme_fg_color;
  26. }
  27. .search-bar.toolbar .button:hover,
  28. .search-bar.toolbar .button:active:hover,
  29. .search-bar.toolbar .button:checked:checked {
  30. background: none;
  31. color: @selected_bg_color;
  32. }