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

347 lines
5.4 KiB
Plaintext
Raw Normal View History

/* Common HTML styles */
body {
min-width: 1250px;
width: 100%;
2017-11-07 14:13:45 +00:00
}
p {
margin-top: 4px !important;
2017-11-07 11:43:59 +00:00
}
body._md-toast-animating {
overflow-y: scroll !important;
2017-11-07 11:43:59 +00:00
}
/* Health check */
.error-notify {
font-size: 20px;
color: black;
padding-bottom: 5px;
}
.loading-logo-fail {
width: 85px;
text-align: center;
}
.loading-logo {
position:relative ;
top: -157px;
width: 85px;
text-align: center;
}
.present-logo {
text-align: center;
}
.checks {
text-align: center;
position: relative;
top: -100px;
}
.checks-fail {
text-align: center;
position: relative;
top: 10px;
}
.healthCheck {
padding-top: 200px;
background-color: #F5F5F5;
}
.health-check-error {
padding-top: 40px;
color: red;
text-align: center;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
height: 200px;
}
.percentage {
font-size: 18px;
text-align: center;
position: relative;
height: 25px;
color: #666666;
2018-02-23 17:07:13 +00:00
background-color: #white !important;
}
/* Wazuh Header */
.wazuh-h3 {
font-size: 18px !important;
font-weight: 400 !important;
2017-11-07 11:43:59 +00:00
}
.wazuh-h1 {
font-size: 24px !important;
}
2017-11-29 11:04:41 +00:00
/* Fix typography for better consistency */
2017-11-29 12:04:33 +00:00
html, body, button:not(.fa):not(.fa-times), textarea, input, select {
2017-11-29 11:04:41 +00:00
font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
/* Loading Ring styles */
div.uil-ring-css {
transform: scale(0.8);
margin: auto;
2017-11-07 11:43:59 +00:00
}
.uil-ring-css {
background: none;
position: relative;
width: 200px;
height: 200px;
2017-11-07 11:43:59 +00:00
}
.uil-ring-css>div {
position: absolute;
display: block;
width: 160px;
height: 160px;
top: 20px;
left: 20px;
border-radius: 80px;
box-shadow: 0 3px 0 0 rgb(0,121,165);
-webkit-transform-origin: 80px 81.5px;
transform-origin: 80px 81.5px;
-webkit-animation: uil-ring-anim 1.5s linear infinite;
animation: uil-ring-anim 1.5s linear infinite;
}
/* Navbar Directive */
navbar {
padding: 0 0px 6px 7px;
}
.md-tab.md-active {
}
.headBar {
2018-02-23 17:07:13 +00:00
background-color: white !important;
min-width: 463px;
}
.horizontalTabsBar {
2018-02-23 17:07:13 +00:00
background-color: white !important;
}
.tabView md-nav-bar md-nav-ink-bar {
background-color: rgb(228, 228, 228);
}
.selectedItem {
background-color: rgba(129, 200, 222, 0.7) !important
2017-11-17 17:20:13 +00:00
}
2017-11-07 14:13:45 +00:00
.json-beautifier {
background-color: ghostwhite;
border: 1px solid silver;
padding: 10px 20px;
margin: 20px;
}
.json-key {
color: brown;
}
.json-value {
color: navy;
}
.json-string {
color: olive;
}
/* Input filter box styles */
.input-filter-box {
2018-03-05 09:22:37 +00:00
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1) !important;
border: 1px solid #D9D9D9 !important;
font-size: 14px;
padding: 0px 15px;
margin-top: 18px;
border: none;
height: 40px;
margin-right: 20px;
}
.input-filter-box:focus,
md-autocomplete md-autocomplete-wrap input {
2018-03-05 09:22:37 +00:00
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1) !important;
border: 1px solid #D9D9D9 !important;
}
2018-03-02 08:13:28 +00:00
:focus:not([class^="eui"]) {
box-shadow: none;
}
2018-03-01 15:31:28 +00:00
/* Style to override outline on components but avoid hidden shadow on focus*/
:focus:not(.wazuh-button, .input-filter-box) {
box-shadow: none !important;
}
md-autocomplete:focus {
box-shadow: none !important;
}
/* Progress Linear */
md-progress-linear.md-default-theme ._md-bar,
md-progress-linear ._md-bar {
background-color: rgb(0,121,165);
}
.wazuh-loading md-progress-linear {
height: 20px !important;
}
.wazuh-loading md-progress-linear .md-container {
height: 20px !important;
}
.wazuh-loading md-progress-linear .md-container .md-bar {
height: 20px !important;
}
.wazuh-loading md-progress-linear .md-container .md-dashed:before {
height: 20px !important;
}
/* Manager Groups Agents/Files tabs fix */
.md-tab.md-active {
color: rgb(0,121,165) !important;
}
2017-12-12 11:38:23 +00:00
2018-02-09 20:22:12 +00:00
.directives-color-white,
.directives-color-white button {
2017-12-12 11:38:23 +00:00
color: white !important;
}
2017-12-18 11:07:42 +00:00
2018-02-09 20:22:12 +00:00
.navItemChangeColor button{
background-color: #0079a5 !important;
}
2017-12-19 13:53:40 +00:00
/* Common styles for text and font */
2017-12-18 11:07:42 +00:00
.text-center {
text-align: center;
}
2017-12-18 16:52:23 +00:00
.text-right {
text-align: right;
}
2017-12-19 13:53:40 +00:00
.text-bold {
2018-01-11 12:57:05 +00:00
font-weight: bold !important;
2017-12-19 13:53:40 +00:00
}
.font-size-14-pt {
font-size: 14pt;
}
.font-size-15 {
font-size: 15px;
}
.font-size-16-pt {
font-size: 16pt;
}
.font-size-18 {
font-size: 18px;
}
2017-12-18 16:52:23 +00:00
.font-size-19-pt {
font-size: 19pt;
}
2017-12-19 13:53:40 +00:00
.font-size-25 {
font-size: 25px;
}
/* Custom Background colours */
2017-12-18 11:07:42 +00:00
.background-white {
background-color: white;
}
.background-f7 {
background-color: #f7f7f7;
}
.background-e4 {
2018-02-23 17:07:13 +00:00
background-color: white;
2017-12-18 11:07:42 +00:00
}
2017-12-19 13:53:40 +00:00
.background-e2 {
background-color: #e2e2e2;
2017-12-18 11:07:42 +00:00
}
2017-12-19 13:53:40 +00:00
.color-f9 {
color: #ff9999;
}
/* Custom styles for the box model */
.margin-top-30 {
margin-top: 30px;
2017-12-18 11:07:42 +00:00
}
.margin-right-0,
.no-margin-right {
2017-12-18 11:07:42 +00:00
margin-right: 0px;
}
.no-margin-left {
margin-left: 0px;
}
2017-12-18 11:07:42 +00:00
.margin-left-0 {
2018-02-14 15:43:31 +00:00
margin-left: 0px !important;
margin-right: 8px !important;
margin-top: 8px !important;
margin-bottom: 8px !important;
2017-12-18 11:07:42 +00:00
}
.padding-left-0 {
padding-left: 0px;
}
.padding-right-0 {
padding-right: 0px;
}
2017-12-18 16:52:23 +00:00
.overflow-hidden {
overflow: hidden;
}
.display-none {
display: none;
}
2018-01-12 09:31:54 +00:00
.agent-conf-panel {
padding-bottom: 0 !important;
2018-01-17 16:29:49 +00:00
overflow-y: auto !important;
2018-01-12 09:31:54 +00:00
}
#agent-conf-raw-panel {
padding-top: 0 !important;
}
#agent-conf-raw-card {
margin-top: 0 !important;
}