_query_part.scss 412 B

1234567891011121314151617181920212223242526272829
  1. .query-part {
  2. background-color: $tight-form-func-bg;
  3. &.show-function-controls {
  4. padding-top: 5px;
  5. min-width: 100px;
  6. text-align: center;
  7. }
  8. .query-part__last {
  9. display: none;
  10. }
  11. &:hover .query-part__last {
  12. display: inline;
  13. }
  14. &:hover {
  15. background: $tight-form-func-highlight-bg;
  16. }
  17. }
  18. .query-part__link {
  19. cursor: pointer;
  20. &--no-value {
  21. color: $text-muted;
  22. }
  23. }