- add secret type for installation_config in the super admin console - hide tokens by default on the UI Before ---- <img width="891" alt="image" src="https://github.com/user-attachments/assets/1c51b3bb-47f9-49bf-bb0d-75b84d8d2eeb" /> After ---- <img width="958" alt="image" src="https://github.com/user-attachments/assets/b7eca1ff-1cc0-4259-9977-6109eb38ad64" /> --------- Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
51 lines
1.1 KiB
SCSS
51 lines
1.1 KiB
SCSS
button:not(.reset-base),
|
|
input[type='button']:not(.reset-base),
|
|
input[type='reset']:not(.reset-base),
|
|
input[type='submit']:not(.reset-base),
|
|
.button:not(.reset-base) {
|
|
appearance: none;
|
|
background-color: $color-woot;
|
|
border: 0;
|
|
border-radius: $base-border-radius;
|
|
color: $white;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
font-size: $font-size-small;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-weight: $font-weight-medium;
|
|
line-height: 1;
|
|
padding: $space-one $space-two;
|
|
text-decoration: none;
|
|
transition: background-color $base-duration $base-timing;
|
|
user-select: none;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
background-color: mix($black, $color-woot, 20%);
|
|
color: $white;
|
|
}
|
|
|
|
&:focus {
|
|
outline: $focus-outline;
|
|
outline-offset: $focus-outline-offset;
|
|
}
|
|
|
|
&:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
|
|
&:hover {
|
|
background-color: $color-woot;
|
|
}
|
|
}
|
|
}
|
|
|
|
.button--alt {
|
|
background-color: transparent;
|
|
border: $base-border;
|
|
border-color: $blue;
|
|
color: $blue;
|
|
margin-bottom: $base-spacing;
|
|
}
|