mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-26 00:07:17 +00:00

Change-type: patch Changelog-entry: Rework target selector modal Signed-off-by: Lorenzo Alberto Maria Ambrosi <lorenzothunder.ambrosi@gmail.com>
45 lines
1.0 KiB
SCSS
45 lines
1.0 KiB
SCSS
/*
|
|
* Copyright 2016 balena.io
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
// This file is meant to hold Bootstrap modifications
|
|
// that don't qualify as separate UI components.
|
|
|
|
// Prevent white flash when running application
|
|
html {
|
|
background-color: $palette-theme-dark-background;
|
|
}
|
|
|
|
body {
|
|
background-color: $palette-theme-dark-background;
|
|
}
|
|
|
|
// Fix slight checkbox vertical alignment issue
|
|
input[type="checkbox"] {
|
|
margin: 0;
|
|
}
|
|
|
|
label {
|
|
margin: 0;
|
|
}
|
|
|
|
[uib-tooltip] {
|
|
cursor: default;
|
|
}
|
|
|
|
.tooltip {
|
|
word-wrap: break-word;
|
|
}
|