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

362 lines
6.9 KiB
Plaintext
Raw Normal View History

2016-07-18 14:54:06 +00:00
/* MATERIAL */
2016-09-21 10:10:07 +00:00
::-webkit-scrollbar {
2016-09-13 08:43:38 +00:00
display: block !important;
width: 0px;
2016-09-21 10:10:07 +00:00
}
2016-09-13 08:43:38 +00:00
.button-active {
background: rgb(207,216,220) !important;
color: rgba(0,0,0,0.87)!important;
}
.button-disabled {
background: rgb(236, 239, 241) !important;
color: rgba(0,0,0,0.87)!important;
}
2016-09-05 19:27:05 +00:00
md-progress-linear.md-default-theme ._md-bar, md-progress-linear ._md-bar {
background-color: #3caed2;
}
2016-09-13 08:43:38 +00:00
md-select-menu.md-default-theme md-content, md-select-menu md-content {
background: rgb(207, 216, 220) !important;
}
md-input-container > md-select {
background: rgb(207, 216, 220);
border-radius: 3px;
padding: 3px;
}
2016-08-31 11:38:53 +00:00
.md-headline{
2016-09-02 17:15:00 +00:00
font-size: 22px !important;
2016-08-31 11:38:53 +00:00
}
2016-09-05 16:39:10 +00:00
.h3, h3 {
2016-09-05 16:25:52 +00:00
font-size: 22px !important;
font-weight: 400 !important;
2016-09-05 16:39:10 +00:00
}
2016-07-18 14:54:06 +00:00
.vertical-repeater {
2016-07-23 01:03:03 +00:00
height: 100%;
2016-08-03 03:15:37 +00:00
min-height: 400px;
2016-07-18 14:54:06 +00:00
width: 100%;
}
2016-07-19 10:38:29 +00:00
.status {
width: 3%;
}
2016-07-18 14:54:06 +00:00
.status.green{
background-color: rgb(49, 196, 113);
2016-07-18 14:54:06 +00:00
}
.status.red{
background-color: red;
2016-07-19 10:38:29 +00:00
}
.status.orange {
background-color: orange;
}
2016-07-25 13:33:17 +00:00
.status.grey {
background-color: grey;
}
2016-07-22 11:34:36 +00:00
.status.round{
border-radius: 50%;
height: 15px;
width: 15px;
}
2016-07-25 13:33:17 +00:00
.status.rectangle{
width: 8px;
height: 20px;
float: right;
}
2016-07-19 10:38:29 +00:00
.sideNavBox {
margin-bottom: 0px;
2016-07-22 10:16:33 +00:00
}
2016-07-22 11:34:36 +00:00
.right-text {
text-align: right;
2016-07-23 01:03:03 +00:00
}
#header_logo > a {
padding-top: 0;
2016-09-23 08:35:12 +00:00
padding-bottom: 0;
2016-07-23 01:03:03 +00:00
}
2016-07-24 04:10:53 +00:00
.glyphicon-chevron-right{
background-color: #3caed2;
padding-top: 4px;
padding-bottom: 4px;
padding-right: 13px;
padding-left: 13px;
color: white;
}
.glyphicon-chevron-left{
background-color: #3caed2;
padding-top: 4px;
padding-bottom: 4px;
padding-right: 13px;
padding-left: 13px;
color: white;
}
2016-07-24 06:11:00 +00:00
.md-button.active {
background-color: rgba(158,158,158,0.2);
}
md-list-item.active._md-button-wrap.ng-scope._md.md-clickable{
background-color: rgba(158,158,158,0.2);
2016-07-27 10:22:21 +00:00
}
.logTable {
font-family: Consolas, Helvetica;
font-size: 12px;
line-height: 1.4;
color: #333;
word-wrap: break-word;
border-collapse: collapse;
2016-09-21 10:10:07 +00:00
margin-bottom: 0px;
2016-07-27 10:22:21 +00:00
width: 100%;
}
.logTable tbody tr {
min-height: 18px;
}
.logTable tbody tr td {
padding: 0;
}
.logTableNumber {
width: 30px;
padding-right: 10px;
padding-left: 10px;
color: rgba(0,0,0,0.3);
text-align: center;
border: solid #eee;
border-width: 1px;
}
.logTableCode {
overflow: visible;
position: relative;
padding-right: 5px !important;
padding-left: 10px !important;
vertical-align: top;
border: solid #eee;
border-width: 1px;
}
.logTableCodeOdd {
background-color: #f7f7f7;
2016-08-03 03:15:37 +00:00
}
.autocomplete-custom-agents-bar li {
2016-08-15 17:54:29 +00:00
border-bottom: 1px solid #ccc;
height: auto;
padding-top: 8px;
padding-bottom: 8px;
white-space: normal; }
2016-08-03 03:15:37 +00:00
.autocomplete-custom-agents-bar li:last-child {
2016-08-15 17:54:29 +00:00
border-bottom-width: 0; }
2016-08-03 03:15:37 +00:00
.autocomplete-custom-agents-bar .item-title,
.autocomplete-custom-agents-bar .item-metadata {
2016-08-15 17:54:29 +00:00
display: block;
line-height: 2;
height: 18px;
}
.statusBox {
padding: 0 6px;
margin: 6px 8px;
line-height: 36px;
min-height: 36px;
background: white;
white-space: nowrap;
2016-08-23 14:27:42 +00:00
min-width: 75px;
2016-08-15 17:54:29 +00:00
text-align: center;
font-size: 14px;
2016-08-23 14:27:42 +00:00
}
.statusBox.large {
min-width: 120px !important;
}
.statusBox.extraLarge {
min-width: 150px !important;
}
2016-08-23 14:27:42 +00:00
.pagination-other-pages-list > li a {
text-decoration: none;
background-color: #f6f6f6;
margin-left: 2px;
padding: 8px 11px;
font-size: 12px;
line-height: 1.5;
}
.pagination-other-pages-list {
flex: 0 0 auto;
display: flex;
justify-content: center;
padding: 0;
margin: 0;
list-style: none;
}
body._md-toast-animating { overflow-y: scroll !important; }
._md-bottom {
position: fixed;
}
pre {
2016-09-02 17:15:00 +00:00
white-space: pre-wrap;
word-wrap: break-word;
height: 120px;
2016-08-30 17:13:06 +00:00
}
.wazuhMenuNav div md-nav-ink-bar {
left: 0px !important;
width: 0px !important;
}
.wazuhMenuNav div nav {
padding-top: 9px;
height: 70px;
background-color: #3caed2;
color: white;
font-size: 14px;
}
.wazuhMenuNav div nav ul li a {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
color: white !important;
font-size: 14px !important;
padding-bottom: 0px;
height: 96%;
}
.wazuhMenuNav div nav ul li a:hover {
background-color: #2f99c1 !important;
}
.wazuhMenuNav div nav ul li .md-active {
background-color: #2f99c1 !important;
2016-08-31 11:58:55 +00:00
}
p {
margin-top: 4px !important;
2016-09-01 11:18:54 +00:00
}
.subNavLine {
border-style: solid;
border-width: 0 0 1px;
border-bottom-color: rgba(0, 0, 0, 0.117647);
padding-bottom: 5px !important;
padding-left: 0px !important;
}
.subNavLine a {
margin-bottom: 0px;
}
.subNavLine div {
margin-bottom: 0px;
2016-09-21 07:23:17 +00:00
margin-top: 0px;
}
.subNavLine button {
margin-top: 0px;
margin-bottom: 4px;
}
.secondLevelNavLine button {
margin-top: 6px !important;
margin-bottom: 6px !important;
}
.secondLevelNavLine div {
margin-top: 6px !important;
margin-bottom: 6px !important;
2016-09-02 10:55:43 +00:00
}
._md-select-value {
2016-09-02 14:03:11 +00:00
border: none !important;
}
.md-toolbar-tools {
2016-09-02 17:15:00 +00:00
font-size: 18px !important;
}
md-list.agents-preview-table:hover {
background-color: #f2f2f2;
}
2016-09-08 12:57:07 +00:00
a.pull-right {
visibility: hidden;
}
2016-09-19 09:04:57 +00:00
.table-header-move {
visibility: hidden !important;
}
2016-09-16 09:06:51 +00:00
.invisibleButton {
margin: 0px !important;
padding: 0px !important;
text-align: left !important;
text-transform: none !important;
}
.invisibleButton:hover {
color: #000;
}
.invisibleButton:focus {
color: #000;
2016-09-20 19:45:53 +00:00
}
2016-09-21 07:23:17 +00:00
md-nav-bar {
padding-top: 0px !important;
2016-09-22 11:20:05 +00:00
}
/* noClickVis: Make visualizations not clickable*/
.noClickVis visualize-legend .legend-value .legend-value-details {
visibility: hidden;
width: 0px;
height: 0px;
border: 0px;
padding: 0px;
display: none;
}
.noClickVis .legend-value-title {
cursor: default;
}
.noClickVis .legend-value {
opacity: 1 !important;
}
.noClickVis .legend-value:hover {
background-color: #fff !important;
}
.noClickVis .legend-value-full {
background-color: #fff !important;
}
.noClickVis .table-condensed .fa-search {
font-size: 0;
}
.noClickVis .table-condensed tbody td {
cursor: default;
}
.noClickVis .table-condensed tbody td:hover {
background-color: #fff !important;
}
.noClickVis .table-condensed tbody .cell-hover {
background-color: #fff !important;
2016-09-29 18:35:03 +00:00
}
md-select-menu:not(._md-overflow) md-content {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
.ruleset_rules_row_active {
background-color: #fafafa;
padding-bottom: 0px;
}
.ruleset_rules_row_active a{
color: rgba(0,0,0,0.87);
text-decoration: none;
}
.ruleset_rules_row_active a:hover{
color: #000;
text-decoration: none;
}
button:hover, button:focus, button.focus{
color: #000;
2016-10-02 14:09:46 +00:00
}
.input-filter-box {
box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px, rgba(0, 0, 0, 0.137255) 0px 1px 1px 0px, rgba(0, 0, 0, 0.117647) 0px 2px 1px -1px;
font-size: 14px;
padding: 0px 15px;
margin-top: 18px;border: none;
height: 40px;
margin-right: 20px;
2016-09-21 07:23:17 +00:00
}