src/app/components/queues-view/queues-view.component.scss (66 lines of code) (raw):

/** * 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. */ .part-label { color: #333; font-size: 1.2em; margin-right: 10px; } .queues-view { overflow: hidden; overflow-x: auto; .queue-level { max-width: 240px; } } .mat-drawer-container { width: 430px; height: calc(100vh - 190px); background: #eee; position: absolute; right: 0; display: none; .mat-drawer { width: 100%; .content { padding: 0 10px; } } .close-btn { float: right; font-size: 1.2em; cursor: pointer; padding-right: 5px; &:hover { color: #f44336; } } .header { padding: 10px; height: 38px; border-bottom: 1px solid #ccc; font-size: 1.2em; font-weight: bold; } .item-wrapper { .left-item { text-align: right; } .left-item, .right-item { width: 50%; padding: 6px; padding-right: 0; font-size: 1.1em; color: #666; } .right-item { font-weight: 600; } } .app-link { text-decoration: none; font-size: 1.1em; color: #666; &:hover { text-decoration: underline; } } }