open-vault/ui/app/styles/core/generic.scss
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

63 lines
1,003 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
// 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-smooth: 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;
&[disabled] {
opacity: 0.5;
cursor: default;
}
}
.link-plain {
text-decoration: none;
}