리빌더 부분 추가
This commit is contained in:
179
theme/rb.basic/rb.css/datepicker.css
Normal file
179
theme/rb.basic/rb.css/datepicker.css
Normal file
@ -0,0 +1,179 @@
|
||||
@charset "utf-8";
|
||||
|
||||
.ui-widget-header {
|
||||
border: 0px solid #dddddd;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>thead>tr>th {
|
||||
font-size: 14px !important;
|
||||
}
|
||||
|
||||
.ui-datepicker .ui-datepicker-header {
|
||||
position: relative;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
|
||||
border: 0px solid #c5c5c5;
|
||||
background-color: transparent;
|
||||
font-weight: normal;
|
||||
color: #454545;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ui-datepicker .ui-datepicker-title {
|
||||
margin: 0 0em;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
padding: 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ui-datepicker {
|
||||
display: none;
|
||||
background-color: #fff;
|
||||
border-radius: 4px;
|
||||
margin-top: 10px;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
padding: 20px;
|
||||
padding-bottom: 10px;
|
||||
width: 350px !important;
|
||||
box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.ui-widget.ui-widget-content {
|
||||
border: 1px solid #eee;
|
||||
}
|
||||
|
||||
#datepicker:focus>.ui-datepicker {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ui-datepicker-prev,
|
||||
.ui-datepicker-next {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ui-datepicker-next {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ui-state-disabled {
|
||||
cursor: auto;
|
||||
color: hsla(0, 0%, 80%, 1);
|
||||
}
|
||||
|
||||
.ui-datepicker-title {
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
font-weight: 100;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>thead>tr>th {
|
||||
padding: 5px;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
.ui-datepicker-calendar>tbody>tr>td>a {
|
||||
color: #000;
|
||||
font-size: 12px !important;
|
||||
font-weight: bold !important;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.ui-datepicker-calendar>tbody>tr>.ui-state-disabled:hover {
|
||||
cursor: auto;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>tbody>tr>td {
|
||||
border-radius: 100%;
|
||||
width: 44px;
|
||||
height: 30px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
font-weight: 100;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>tbody>tr>td:hover {
|
||||
background-color: transparent;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.ui-state-hover,
|
||||
.ui-widget-content .ui-state-hover,
|
||||
.ui-widget-header .ui-state-hover,
|
||||
.ui-state-focus,
|
||||
.ui-widget-content .ui-state-focus,
|
||||
.ui-widget-header .ui-state-focus,
|
||||
.ui-button:hover,
|
||||
.ui-button:focus {
|
||||
border: 0px solid #cccccc;
|
||||
background-color: transparent;
|
||||
font-weight: normal;
|
||||
color: #2b2b2b;
|
||||
}
|
||||
|
||||
.ui-widget-header .ui-icon {
|
||||
background-image: url('./btns.png');
|
||||
}
|
||||
.ui-icon-circle-triangle-e {
|
||||
background-position: -20px 0px;
|
||||
background-size: 36px;
|
||||
}
|
||||
|
||||
.ui-icon-circle-triangle-w {
|
||||
background-position: -0px -0px;
|
||||
background-size: 36px;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>tbody>tr>td:first-child a{
|
||||
color: red !important;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>tbody>tr>td:last-child a{
|
||||
color: #0099ff !important;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>thead>tr>th:first-child {
|
||||
color: red !important;
|
||||
}
|
||||
|
||||
.ui-datepicker-calendar>thead>tr>th:last-child {
|
||||
color: #0099ff !important;
|
||||
}
|
||||
|
||||
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
|
||||
border: 0px;
|
||||
background: #f1f1f1;
|
||||
border-radius: 50%;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
|
||||
border: 0px;
|
||||
width: auto;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
width: 40px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year:focus {outline: none;}
|
||||
.ui-datepicker select.ui-datepicker-month {margin-left: 5px;}
|
||||
.ui-datepicker select.ui-datepicker-year {}
|
||||
Reference in New Issue
Block a user