mirror of
https://github.com/status-im/consul.git
synced 2025-02-03 01:14:23 +00:00
06b6aff8d0
Migrate roughly half of the base components into base Adds a target for easily formatting CSS Further CSS amends/migration (#5921) 1. tooltips within tables where a slightly bit troublesome due to a mix of `inline-flex`, `overflow` and the need for truncation. This refineds tooltips a slight bit more to work 'everywhere'. 2. We also move tooltip to use the correct color and min-width from structure, but we overwrite the min-width here until we get confirmation on widths/alignment of text within a tooltip. 3. Tiny fixes for breadcrumbs and toggle-buttons in tabular listings 4. Now we inline-flex our table cells, it means it is impossible to truncate text without wrapping it in another element. This wraps all Description like text in `<p>` tags. Generally the first column of text is already wrapped in an `<a>` tag. Other items such as consul tags and policy names etc get 'cutoff' rather than truncated. 5. We are now using all the icons from `@hashicorp/structure-icons`
95 lines
1.8 KiB
SCSS
95 lines
1.8 KiB
SCSS
/* decor */
|
|
%button {
|
|
@extend %user-select-none;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
%button:disabled {
|
|
cursor: default;
|
|
box-shadow: none;
|
|
}
|
|
%copy-button {
|
|
@extend %button;
|
|
min-height: 17px;
|
|
}
|
|
%copy-button::before {
|
|
@extend %with-copy-action-icon;
|
|
@extend %as-pseudo;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: absolute;
|
|
left: 12px;
|
|
}
|
|
%copy-button:not(:empty) {
|
|
padding-left: 38px !important;
|
|
}
|
|
%primary-button,
|
|
%secondary-button,
|
|
%dangerous-button {
|
|
@extend %button;
|
|
border-width: 1px;
|
|
border-radius: $decor-radius-100;
|
|
box-shadow: 0 3px 1px 0 rgba($black, 0.12);
|
|
}
|
|
/* color */
|
|
%copy-button {
|
|
color: $color-action;
|
|
background-color: $color-transparent;
|
|
}
|
|
%copy-button:hover:not(:disabled):not(:active),
|
|
%copy-button:focus {
|
|
/*frame-grey frame-blue*/
|
|
color: $color-action;
|
|
background-color: $gray-050;
|
|
}
|
|
%copy-button:disabled {
|
|
}
|
|
%copy-button:active {
|
|
background-color: $gray-200;
|
|
}
|
|
%primary-button {
|
|
@extend %frame-blue-800;
|
|
}
|
|
%primary-button:hover:not(:disabled):not(:active),
|
|
%primary-button:focus {
|
|
@extend %frame-blue-700;
|
|
}
|
|
%primary-button:disabled {
|
|
@extend %frame-blue-600;
|
|
}
|
|
%primary-button:hover:active {
|
|
@extend %frame-blue-900;
|
|
}
|
|
/**/
|
|
%secondary-button:hover:not(:disabled):not(:active),
|
|
%secondary-button:focus {
|
|
@extend %frame-gray-300;
|
|
}
|
|
%secondary-button {
|
|
@extend %frame-gray-400;
|
|
}
|
|
%secondary-button:disabled {
|
|
color: $gray-600;
|
|
}
|
|
%secondary-button:active {
|
|
/* %frame-gray-something */
|
|
@extend %frame-gray-700;
|
|
background-color: $gray-200;
|
|
color: $gray-800;
|
|
border-color: $gray-700;
|
|
}
|
|
/**/
|
|
%dangerous-button {
|
|
@extend %frame-red-300;
|
|
}
|
|
%dangerous-button:hover:not(:disabled):not(:active),
|
|
%dangerous-button:focus {
|
|
@extend %frame-red-700;
|
|
}
|
|
%dangerous-button:disabled {
|
|
@extend %frame-red-600;
|
|
}
|
|
%dangerous-button:hover:active {
|
|
@extend %frame-red-900;
|
|
}
|