wazuh-kibana-app/public/less/typography.less

95 lines
1.5 KiB
Plaintext
Raw Normal View History

/* -------------------------------------------------------------------------- */
/* ------------------- Wazuh text & typography stylesheet ------------------- */
/* -------------------------------------------------------------------------- */
/* Apply the Open Sans font in the whole app */
2018-03-19 14:28:49 +00:00
html, body, button:not(.fa):not(.fa-times), textarea, input, select, .wz-chip {
font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
.wz-headline-title {
font-size: 17px;
}
.color-grey {
color: grey !important;
}
.color-f9 {
color: #ff9999;
}
2018-03-14 09:28:56 +00:00
.wz-color-orange {
color: #f39c12 !important;
}
.color-pointer {
color: #0079a5 !important;
}
.wz-line-height {
line-height: 20px !important;
}
2018-03-14 10:45:36 +00:00
.wz-text-center {
text-align: center;
}
2018-03-14 10:45:36 +00:00
.wz-text-right {
text-align: right;
}
2018-03-22 14:11:36 +00:00
.wz-text-bold {
font-weight: bold !important;
}
.wz-text-truncatable {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.font-size-16-pt {
font-size: 16pt;
}
.font-size-18 {
font-size: 18px;
}
.font-size-25 {
font-size: 25px;
}
/* JSON viewer font colors */
.json-key {
color: brown;
}
.json-value {
color: navy;
}
.json-string {
color: olive;
}
2018-03-15 16:27:28 +00:00
/* Class for linkable text elements */
.wz-text-link {
cursor: pointer;
2018-03-15 17:42:41 +00:00
color: rgb(0, 121, 165);
2018-03-15 16:27:28 +00:00
&:hover {
text-decoration: underline;
}
}
2018-03-15 17:38:04 +00:00
.wz-text-active {
2018-03-15 17:42:41 +00:00
color: rgb(0, 121, 165);
2018-03-15 17:38:04 +00:00
font-weight: bold;
text-decoration: underline;
}