mirror of https://github.com/status-im/fathom.git
move custom date selector to far right, #32
This commit is contained in:
parent
bcae762a35
commit
44ae5d38f2
|
@ -128,7 +128,6 @@ class DatePicker extends Component {
|
||||||
<ul>
|
<ul>
|
||||||
{links}
|
{links}
|
||||||
<li class="custom">
|
<li class="custom">
|
||||||
<span style="padding: 0 8px 0 0;">—</span>
|
|
||||||
<Pikadayer value={this.dateValue(state.startDate)} onSelect={this.setStartDate} />
|
<Pikadayer value={this.dateValue(state.startDate)} onSelect={this.setStartDate} />
|
||||||
<span style="margin: 0 8px"> to </span>
|
<span style="margin: 0 8px"> to </span>
|
||||||
<Pikadayer value={this.dateValue(state.endDate)} onSelect={this.setEndDate} />
|
<Pikadayer value={this.dateValue(state.endDate)} onSelect={this.setEndDate} />
|
||||||
|
|
|
@ -1,68 +1,34 @@
|
||||||
|
|
||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Pikaday
|
* Pikaday
|
||||||
* Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
|
* Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Variables
|
|
||||||
// Declare any of these variables before importing this SCSS file to easily override defaults
|
|
||||||
// Variables are namespaced with the pd (pikaday) prefix
|
|
||||||
|
|
||||||
// Colours
|
|
||||||
$pd-text-color: #333 !default;
|
|
||||||
$pd-title-color: #333 !default;
|
|
||||||
$pd-title-bg: #fff !default;
|
|
||||||
$pd-picker-bg: #fff !default;
|
|
||||||
$pd-picker-border: #ccc !default;
|
|
||||||
$pd-picker-border-bottom: #bbb !default;
|
|
||||||
$pd-picker-shadow: rgba(0,0,0,.5) !default;
|
|
||||||
$pd-th-color: #999 !default;
|
|
||||||
$pd-day-color: #666 !default;
|
|
||||||
$pd-day-bg: #f5f5f5 !default;
|
|
||||||
$pd-day-hover-color: #fff !default;
|
|
||||||
$pd-day-hover-bg: #ff8000 !default;
|
|
||||||
$pd-day-today-color: #33aaff !default;
|
|
||||||
$pd-day-selected-color: #fff !default;
|
|
||||||
$pd-day-selected-bg: #33aaff !default;
|
|
||||||
$pd-day-selected-shadow: #178fe5 !default;
|
|
||||||
$pd-day-disabled-color: #999 !default;
|
|
||||||
$pd-week-color: #999 !default;
|
|
||||||
|
|
||||||
// Font
|
|
||||||
$pd-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
|
||||||
|
|
||||||
|
|
||||||
.pika-single {
|
.pika-single {
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
display: block;
|
display: block;
|
||||||
position: relative;
|
position: relative;
|
||||||
color: $pd-text-color;
|
background: #fff;
|
||||||
background: $pd-picker-bg;
|
border-radius: 4px;
|
||||||
border: 1px solid $pd-picker-border;
|
box-shadow: 0 2px 8px 0 rgba(70,73,77,.16);
|
||||||
border-bottom-color: $pd-picker-border-bottom;
|
|
||||||
font-family: $pd-font-family;
|
|
||||||
|
|
||||||
&.is-hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.is-bound {
|
|
||||||
position: absolute;
|
|
||||||
box-shadow: 0 5px 15px -5px $pd-picker-shadow;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// clear child float (pika-lendar), using the famous micro clearfix hack
|
.pika-single:before,
|
||||||
// http://nicolasgallagher.com/micro-clearfix-hack/
|
.pika-single:after {
|
||||||
.pika-single {
|
|
||||||
*zoom: 1;
|
|
||||||
|
|
||||||
&:before,
|
|
||||||
&:after {
|
|
||||||
content: " ";
|
content: " ";
|
||||||
display: table;
|
display: table;
|
||||||
}
|
}
|
||||||
|
.pika-single:after { clear: both }
|
||||||
|
.pika-single { *zoom: 1 }
|
||||||
|
|
||||||
&:after { clear: both }
|
.pika-single.is-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pika-single.is-bound {
|
||||||
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pika-lendar {
|
.pika-lendar {
|
||||||
|
@ -74,17 +40,6 @@ $pd-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
||||||
.pika-title {
|
.pika-title {
|
||||||
position: relative;
|
position: relative;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
select {
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 9998;
|
|
||||||
margin: 0;
|
|
||||||
left: 0;
|
|
||||||
top: 5px;
|
|
||||||
filter: alpha(opacity=0);
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pika-label {
|
.pika-label {
|
||||||
|
@ -97,9 +52,17 @@ $pd-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
||||||
padding: 5px 3px;
|
padding: 5px 3px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
font-weight: bold;
|
font-weight: 500;
|
||||||
color: $pd-title-color;
|
}
|
||||||
background-color: $pd-title-bg;
|
.pika-title select {
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 9998;
|
||||||
|
margin: 0;
|
||||||
|
left: 0;
|
||||||
|
top: 5px;
|
||||||
|
filter: alpha(opacity=0);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pika-prev,
|
.pika-prev,
|
||||||
|
@ -112,7 +75,7 @@ $pd-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
text-indent: 20px; // hide text using text-indent trick, using width value (it's enough)
|
text-indent: 20px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
@ -122,15 +85,11 @@ $pd-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
||||||
opacity: .5;
|
opacity: .5;
|
||||||
*position: absolute;
|
*position: absolute;
|
||||||
*top: 0;
|
*top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
.pika-prev:hover,
|
||||||
|
.pika-next:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
|
||||||
|
|
||||||
&.is-disabled {
|
|
||||||
cursor: default;
|
|
||||||
opacity: .2;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pika-prev,
|
.pika-prev,
|
||||||
|
@ -147,6 +106,12 @@ $pd-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
||||||
*right: 0;
|
*right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pika-prev.is-disabled,
|
||||||
|
.pika-next.is-disabled {
|
||||||
|
cursor: default;
|
||||||
|
opacity: .2;
|
||||||
|
}
|
||||||
|
|
||||||
.pika-select {
|
.pika-select {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
*display: inline;
|
*display: inline;
|
||||||
|
@ -157,99 +122,100 @@ $pd-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
th,
|
.pika-table th,
|
||||||
td {
|
.pika-table td {
|
||||||
width: 14.285714285714286%;
|
width: 14.285714285714286%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
.pika-table th {
|
||||||
color: $pd-th-color;
|
color: #98a0a6;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
font-weight: bold;
|
font-weight: 500;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
|
||||||
|
|
||||||
abbr {
|
|
||||||
border-bottom: none;
|
|
||||||
cursor: help;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pika-button {
|
.pika-button {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: block;
|
display: block;
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
outline: none;
|
outline: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 5px;
|
padding: 4px;
|
||||||
color: $pd-day-color;
|
color: #666;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 15px;
|
line-height: 16px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
background: $pd-day-bg;
|
background: #f5f7fa;
|
||||||
|
|
||||||
.is-today & {
|
|
||||||
color: $pd-day-today-color;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.is-selected & {
|
|
||||||
color: $pd-day-selected-color;
|
|
||||||
font-weight: bold;
|
|
||||||
background: $pd-day-selected-bg;
|
|
||||||
box-shadow: inset 0 1px 3px $pd-day-selected-shadow;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.is-disabled &,
|
|
||||||
.is-outside-current-month & {
|
|
||||||
color: $pd-day-disabled-color;
|
|
||||||
opacity: .3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.is-disabled & {
|
|
||||||
pointer-events: none;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: $pd-day-hover-color;
|
|
||||||
background: $pd-day-hover-bg;
|
|
||||||
box-shadow: none;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.is-selection-disabled {
|
|
||||||
pointer-events: none;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pika-week {
|
.pika-week {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: $pd-week-color;
|
color: #98a0a6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.is-today .pika-button {
|
||||||
|
color: #533feb;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-selected .pika-button,
|
||||||
|
.has-event .pika-button {
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 500;
|
||||||
|
background: #46494d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-event .pika-button {
|
||||||
|
background: #005da9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-disabled .pika-button,
|
||||||
.is-inrange .pika-button {
|
.is-inrange .pika-button {
|
||||||
background: #D5E9F7;
|
background: #88ffc6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-startrange .pika-button {
|
.is-startrange .pika-button {
|
||||||
color: #fff;
|
background: #88ffc6;
|
||||||
background: #6CB31D;
|
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-endrange .pika-button {
|
.is-endrange .pika-button {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #33aaff;
|
background: #33aaff;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.is-disabled .pika-button {
|
||||||
|
pointer-events: none;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-outside-current-month .pika-button {
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-selection-disabled {
|
||||||
|
pointer-events: none;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pika-button:hover,
|
||||||
|
.pika-row.pick-whole-week:hover .pika-button {
|
||||||
|
color: #46494d;
|
||||||
|
background: #88ffc6;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pika-table abbr {
|
||||||
|
border: none;
|
||||||
|
cursor: normal;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -76,10 +76,14 @@ body {
|
||||||
nav.date-nav li a:hover { color: #98a0a6; }
|
nav.date-nav li a:hover { color: #98a0a6; }
|
||||||
nav.date-nav li.active a:hover { color: #46494d; }
|
nav.date-nav li.active a:hover { color: #46494d; }
|
||||||
nav.date-nav li.active a:after { content:""; background: #88ffc6; display: block; width: 100%; height: 3px; position: absolute; top: 4px; z-index: -1; margin: 0 0 0 -4px; transition: all .4s ease; }
|
nav.date-nav li.active a:after { content:""; background: #88ffc6; display: block; width: 100%; height: 3px; position: absolute; top: 4px; z-index: -1; margin: 0 0 0 -4px; transition: all .4s ease; }
|
||||||
|
|
||||||
|
.date-nav .custom {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
.date-nav .custom input {
|
.date-nav .custom input {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 0;
|
border: 0;
|
||||||
width: 65px;
|
width: 68px;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
Loading…
Reference in New Issue