common.scss 6.86 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 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 139 140 141 142 143 144 145 146 147 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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at

//     http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

/* common.scss */
.readOnly {

    span,
    button,
    a {
        i {
            &.fa-trash[data-guid] {
                display: none;
            }

            &.fa-trash[data-id="delete"] {
                display: none;
            }
        }

        &.btn[data-id="addTag"] {
            display: none;
        }

        &.btn[data-id="addTerm"] {
            display: none;
        }

        &.btn[data-id="editButton"] {
            display: none;
        }

        &.editbutton[data-id="editButton"] {
            display: none !important;
        }

        &[data-id="delete"],
        &[data-id="edit"] {
            display: none;
        }

        &.btn[data-id="tagClick"] {
            span {
                display: block;
                padding: 3px 5px 3px 5px;
            }

            i.fa-close[data-id="deleteTag"],
            i.fa-times[data-id="deleteTag"],
            i.fa-times[data-id="delete"] {
                display: none;
            }
        }
    }
}

.details-backbutton {
    display: none !important;
}

.full-screen {
    #sidebar-wrapper {
        left: 0;
    }

    #wrapper {
        padding-left: 0px;
    }
}

.detail-page {
    .details-backbutton {
        display: table-cell !important;
    }

    .searched-term-highlight {
        background-color: #eeee31;
        transition: background-color 4s, font-weight 2s;

        &.bold {
            background-color: transparent;
            font-weight: bold;
        }
    }
}

pre {
    background-color: ghostwhite;
    border: 1px solid silver;
    padding: 10px;
    white-space: -moz-pre-wrap;
    /* Mozilla, supported since 1999 */
    white-space: -pre-wrap;
    /* Opera */
    white-space: -o-pre-wrap;
    /* Opera */
    white-space: pre-wrap;
    /* CSS3 - Text module (Candidate Recommendation) http://www.w3.org/TR/css3-text/#white-space */
    word-wrap: break-word;

    /* IE 5.5+ */
    &.code-block {
        code {
            position: relative;
            max-height: 400px;
            display: block;
            overflow: auto;
            text-align: left;
        }

        position: relative;
        overflow: hidden;

        &.shrink {
            height: 112px;
            white-space: -moz-pre-wrap;
            /* Mozilla, supported since 1999 */
            white-space: -pre-wrap;
            /* Opera */
            white-space: -o-pre-wrap;
            /* Opera */
            white-space: pre-wrap;
            /* CSS3 - Text module (Candidate Recommendation) http://www.w3.org/TR/css3-text/#white-space */
            word-wrap: break-word;

            /* IE 5.5+ */
            code {
                height: 100px;
            }

            &.fixed-height {
                height: 75px;

                code {
                    height: 54px;
                }
            }

            &.medium-height {
                height: 100px;
            }

            .expand-collapse-button {
                i:before {
                    content: "\f107";
                }
            }
        }

        .expand-collapse-button {
            position: absolute;
            right: 3px;
            top: 4px;
            z-index: 1;

            i:before {
                content: "\f106";
            }
        }

        .json-key {
            color: brown;
        }

        .json-value {
            color: navy;
        }

        .json-string {
            color: olive;
183 184 185 186 187

            &.cursor {
                cursor: pointer;
                text-decoration: underline;
            }
188 189 190 191 192 193 194 195
        }
    }

    code {
        font-family: monospace;
    }
}

196
.panel-body .memory-details {
197 198
    pre {
        &.code-block {
199 200 201 202 203
            &.fixed-height {
                max-height: 112px;
                overflow: auto;
            }

204 205 206 207 208 209 210 211 212 213 214
            &.shrink {
                height: 144px;

                code {
                    height: 130px;
                }
            }
        }
    }
}

215 216 217
#accordion {
    .panel-default>.panel-heading {
        cursor: pointer;
218
        width: 100%;
219 220 221 222 223 224
    }
}

.footer-content {
    position: fixed;
    right: 0px;
225
    padding: 2px;
226 227 228
    bottom: 0;
    background: white;
}
229 230 231

.custom-table {
    width: 100%;
232 233 234 235 236 237 238
    display: flex;

    tbody {
        display: flex;
        flex-flow: column;
        width: 100%;
    }
239 240 241

    .custom-tr {
        margin-left: 15px;
242 243
        display: flex;
        width: calc(100% - 15px);
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258

        .custom-col-0,
        .custom-col-1,
        .custom-col-2 {
            vertical-align: top;

            textarea {
                resize: vertical;
                height: 34px;
                min-height: 34px;
                max-height: 70px;
            }
        }


259
        .custom-col-0 {
260
            line-height: 31px;
261 262
            width: 9px;
            padding: 0px 2px;
263 264
        }

265
        .custom-col-1 {
266 267 268 269 270 271 272
            width: calc(50% - 90px);
            flex-grow: 2;

            &:first-child {
                width: 30% !important;
                flex-grow: 1;
            }
273 274
        }

275
        .custom-col-2 {
276
            text-align: center;
277 278
            width: 80px;
            padding-left: 10px;
279 280 281 282 283

            &>button {
                padding: 7px 10px;
                margin-bottom: 10px;
            }
284 285 286 287 288 289 290
        }
    }
}

.errorMsg {
    color: $red;
}
291 292 293 294 295 296

.badge-default {
    background-color: $color_havelock_blue_approx;
    color: $white;
    font-size: 12px;
    font-weight: normal;
297 298 299
    margin-bottom: 5px;
    margin-left: 5px;
    float: left;
300 301 302 303 304 305 306 307 308
}

.errorValidate {
    border-color: red !important;
}

.errorValidate+span .select2-selection {
    border-color: red !important;

309 310
}

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
.button-loader {
    position: relative;
    padding-left: 22px !important;

    &:after {
        content: "\f021";
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        left: 0px;
        top: 0px;
        font-family: FontAwesome;
        background: transparent;
        height: 100%;
        width: 26px;
        font-size: 11px;
        animation: spin 1000ms infinite linear;
329
    }
330 331 332 333 334 335 336 337 338 339
}

.attr-details {
    ul {
        list-style: disc;

        li {
            cursor: pointer;
        }
    }
340
}