main.css 3.0 KB
Newer Older
S
Sercan 已提交
1 2 3 4 5 6 7 8
.hide_column {
    display: none;
}

tr.selected {
    background-color: #E6E4E4 !important;
}

S
Sercan 已提交
9 10 11
/*.modal-dialog {*/
/*width: 1000px !important;*/
/*}*/
S
Sercan 已提交
12 13 14 15 16 17 18 19 20

.tab-pane {
    margin-top: 10px;
}

.close {
    position: absolute;
    right: 0;
    top: 0;
S
Sercan 已提交
21 22
}

R
rsercano 已提交
23
#btnManageRoles, #btnEditUser, #btnManageUsers, #btnExecuteAggregatePipeline, #btnExportQueryResult, #btnClearShell, #btnRefreshStoredFunctions, #btnShowShellHistories, #btnAggregateHistory {
S
Sercan 已提交
24
    margin-bottom: 0 !important;
S
Sercan 已提交
25 26 27 28
}

.modal-background {
    background: #f8fafb !important;
S
Sercan 已提交
29 30 31 32
}

.chosen-container {
    width: 100% !important;
S
Sercan 已提交
33 34 35 36 37 38 39 40
}

#remove-stage-element {
    margin-bottom: 5px;
}

.CodeMirror {
    width: 100%;
R
rsercano 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
}

.context-menu-icon::before {
    color: #1AB394 !important;
}

.context-menu-icon.context-menu-icon--fa::before {
    color: #1AB394 !important;
}

.context-menu-item.context-menu-hover {
    color: #1AB394 !important;
}

.context-menu-item {
    padding: .5em 2em !important;
57 58 59 60
}

.blue-font {
    color: #0000cc !important;
R
#236  
rsercano 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
}

.query-wizard {
    display: none;
    background: #fff;
    width: 100%;
    height: 320px;
    border-radius: 4px;
}

.query-wizard.ng-small-chat {
    display: block;
}

.body-small .query-wizard {
    bottom: 70px;
    right: 20px;
}

.query-wizard.active {
    display: block;
}

.query-wizard .heading {
    background: #2f4050;
    padding: 8px 15px;
    font-weight: bold;
R
rsercano 已提交
88
    color: #fff !important;
R
#236  
rsercano 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
}

.query-wizard .content {
    padding: 15px 15px;
}

.query-wizard .content .author-name {
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 11px;
}

.query-wizard .content > div {
    padding-bottom: 20px;
}

.query-wizard .content .chat-message {
    padding: 5px 10px;
    border-radius: 6px;
R
rsercano 已提交
108
    font-size: 12px;
R
#236  
rsercano 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    line-height: 14px;
    max-width: 80%;
    background: #f3f3f4;
    margin-bottom: 10px;
}

.query-wizard .content .chat-message.active {
    background: #1ab394;
    color: #fff;
}

.query-wizard .content .left {
    text-align: left;
    clear: both;
}

.query-wizard .content .left .chat-message {
    float: left;
}

.query-wizard .content .right {
    text-align: right;
    clear: both;
}

.query-wizard .content .right .chat-message {
    float: right;
}

.query-wizard .form-chat {
R
rsercano 已提交
139 140
    padding-left: 5px;
    padding-right: 5px;
R
rsercano 已提交
141 142 143 144 145 146 147
}

.query-wizard .reset-chat {
    cursor: pointer;
    opacity: 0.6;
    font-size: 11px;
    font-weight: normal;
R
rsercano 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
R
rsercano 已提交
191 192 193 194 195
}

.index-button, .index-button:hover, .index-button:active, .index-button:focus, .index-button:active:focus {
    background-color: #f442cb;
    color: #ffffff;
S
Sercan 已提交
196
}