open-vault/ui/app/styles/core/generic.scss
Matthew Irish 5ca987662f
UI - new token renew banner (#5662)
* move warning banner out of token-expire-warning and into user menu
* check renewal status every 5s, and resume auto-renew if a user becomes active again
* use a link in the token-expire-warning
* add test for new expiration functionality
* fix license test
* use features helper in license test
* fix import
* use yarn 1.12.1
* remove mirage
* skip some tests for now
* use eslintignore
* logout after auth tests
* use new alert-banner for auth info warning
* add data-test selector back
* move identity back to a button, and style button.link
* make the warning message the right color
* fix shamir test
* review feedback
2018-11-05 10:56:59 -06:00

53 lines
868 B
SCSS

// seriously ? yes. seriously.
a {
text-decoration: underline;
&:hover,
&:active,
&:focus {
position: relative;
}
}
.menu a {
text-decoration: none;
}
code {
padding: 0;
font-size: 1em;
}
.icon {
min-width: 1.5rem;
vertical-align: middle;
}
code,
pre {
font-smoothing: inherit;
-webkit-font-smoothing: inherit;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.link {
background: transparent;
border: 0;
color: $blue;
cursor: pointer;
display: inline;
font: inherit;
line-height: normal;
margin: 0;
padding: 0;
font-weight: $font-weight-semibold;
-webkit-user-select: text; /* Chrome all / Safari all */
-moz-user-select: text; /* Firefox all */
-ms-user-select: text; /* IE 10+ */
user-select: text;
}
.link-plain {
text-decoration: none;
}