blob: cc9f6b69b70fea7665a5c962a46f68657f268d8c [file]
/*
*******************************************************************************
* Copyright (c) 2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
.ag-theme-balham,
ag-header {
font-size: 14px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.dropdown-item {
margin-left: 10px;
}
.filter-options {
width: 100%;
display: flex;
justify-content: flex-end;
align-items: center;
border-right: solid 1px #ddd;
}
.filter-options label {
margin: 0 10px 0 0;
font-weight: 400;
}
.save-filter {
display: flex;
align-items: center;
min-width: 152px;
}
.save-filter button {
margin: 0 10px;
}
.save-filter button .fa {
margin-right: 10px;
}
.switch {
position: relative;
display: inline-block;
width: 36px;
height: 18px;
}
.switch input {
display: none;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 14px;
width: 14px;
left: 3px;
bottom: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked+.slider {
background-color: #337ab7;
}
input:focus+.slider {
box-shadow: 0 0 1px #337ab7;
}
input:checked+.slider:before {
-webkit-transform: translateX(16px);
-ms-transform: translateX(16px);
transform: translateX(16px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}