_action-bars.scss 517 B

1234567891011121314151617181920212223242526
  1. /***************
  2. * Action bars *
  3. ***************/
  4. .action-bar, actionbar > revealer > box {
  5. background-color: darken($bg_color, 2%);
  6. border: solid $borders_color;
  7. border-width: 1px 0 0 0;
  8. color: $fg_color;
  9. box-shadow: none;
  10. &:backdrop {
  11. background-color: darken($backdrop_bg_color, 10%);
  12. box-shadow: none;
  13. }
  14. &:first-child {
  15. border-radius: 6px 6px 0px 0px;
  16. border-width: 1px 1px 0px 1px;
  17. }
  18. &:last-child {
  19. border-radius: 0 0 6px 6px;
  20. border-width: 0px 1px 1px 1px;
  21. }
  22. }