app/addons/documents/assets/scss/partition-key.scss (39 lines of code) (raw):

// Licensed 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. @import "../../../../../assets/scss/variables"; .partition-selector { display: flex; align-items: center; padding: 0; min-height: 30px; } .partition-selector__switch { background-color: $cf-partition-selector-bg; border: none; color: $cf-partition-selector-color; font-size: 1rem; &:hover { color: $cf-partition-selector-color-hover; } i { margin-right: 10px; } } .partition-selector__switch--active { color: $cf-partition-selector-color-active; padding-right: 0px; } .partition-selector__key { flex: 1; color: $cf-partition-selector-color; input { max-width: 20rem; } &:hover { cursor: pointer; } } .partition-selector__key--active { color: $cf-partition-selector-color-active; } .partition-selector__global { color: $cf-partition-selector-color-active; }