mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-09 09:47:28 +03:00
More standardization color changes
This commit is contained in:
parent
7f7473c348
commit
a013d40bf1
5 changed files with 8 additions and 12 deletions
|
@ -48,7 +48,7 @@ $asideMenuMobileWidth: 280px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.aside-menu__item:hover {
|
.aside-menu__item:hover {
|
||||||
background-color: $lightHoverColor;
|
background-color: $lightColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.aside-menu__item--selected {
|
.aside-menu__item--selected {
|
||||||
|
|
|
@ -6,7 +6,7 @@ html,
|
||||||
body,
|
body,
|
||||||
#root {
|
#root {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #f5f6fe;
|
background: $lightColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
@ -44,6 +44,10 @@ body,
|
||||||
background-color: $mainColor;
|
background-color: $mainColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table-hover tbody tr:hover {
|
||||||
|
background-color: $lightColor;
|
||||||
|
}
|
||||||
|
|
||||||
.react-datepicker__input-container,
|
.react-datepicker__input-container,
|
||||||
.react-datepicker-wrapper {
|
.react-datepicker-wrapper {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
@import '../utils/base';
|
|
||||||
|
|
||||||
.date-range-row__date-input {
|
|
||||||
@media (max-width: $smMax) {
|
|
||||||
margin-top: .5rem;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,5 @@
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import DateInput from './DateInput';
|
import DateInput from './DateInput';
|
||||||
import './DateRangeRow.scss';
|
|
||||||
|
|
||||||
interface DateRangeRowProps {
|
interface DateRangeRowProps {
|
||||||
startDate?: moment.Moment | null;
|
startDate?: moment.Moment | null;
|
||||||
|
@ -26,7 +25,7 @@ const DateRangeRow = (
|
||||||
</div>
|
</div>
|
||||||
<div className="col-md-6">
|
<div className="col-md-6">
|
||||||
<DateInput
|
<DateInput
|
||||||
className="date-range-row__date-input"
|
className="mt-2 mt-md-0"
|
||||||
selected={endDate}
|
selected={endDate}
|
||||||
placeholderText="Until"
|
placeholderText="Until"
|
||||||
isClearable
|
isClearable
|
||||||
|
|
|
@ -10,7 +10,7 @@ $xlgMin: 1200px;
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
$mainColor: #4696e5;
|
$mainColor: #4696e5;
|
||||||
$lightHoverColor: #eeeeee;
|
$lightColor: #f5f6fe;
|
||||||
$lightGrey: #dddddd;
|
$lightGrey: #dddddd;
|
||||||
$dangerColor: #dc3545;
|
$dangerColor: #dc3545;
|
||||||
$mediumGrey: #dee2e6;
|
$mediumGrey: #dee2e6;
|
||||||
|
|
Loading…
Reference in a new issue