123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- @import './reset.less';
- .ellipsis{
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- .partTitle p a {
- color: #8592B9;
- opacity: 1;
- }
- input:disabled {
- background-color: @disColor;
- }
- .main-body-com{
- background: #fff;
- margin: 0;
- padding: 20px 25px;
- border:10px @disColor solid;
- box-sizing: border-box;
- }
- th[code]{
- cursor: pointer;
- &:after{
- content:"";
- display:inline-block;
- width: 11px;
- height: 14px;
- margin-left: 4px;
- vertical-align: middle;
- background-size: 100%;
- background-image: url("../images/grey.png");
- }
- &.asc:after{
- background: url("../images/up_blue.png");
- background-size: 100%;
- }
- &.desc:after{
- background: url("../images/down_blue.png");
- background-size: 100%;
- }
- }
- .dataSelectLight {
- .partDetailControl .filterItem input {
- width: 120px;
- height: 40px;
- border-radius: 4px;
- border: 1px solid #E2E5EF;
- outline: none;
- margin-right: 10px;
- padding: 0 10px;
- box-sizing: border-box;
- }
- .partDetailControl .filterItem span {
- display: inline-block;
- line-height: 40px;
- position: relative;
- }
- .datapickerBox input {
- margin-right: 0px !important;
- }
- .iconCalen{
- position: absolute;
- width: 15px;
- top: 10px !important;
- right: 10px;
- }
- .divide {
- margin: 0 10px;
- }
- }
- .dataSelectDark {
- // position: relative;
- // display: inline-block;
- margin: 4px 20px 10px 0;
- top: 0px !important;
- height: 34px !important;
- line-height: 34px !important;
- float: right !important;
- span {
- position: relative;
- display: inline-block;
- height: 34px !important;
- line-height: 34px !important;
- float: left;
- }
- input {
- width: 120px;
- height: 32px;
- border-radius: 4px;
- border: 1px solid @themeBorderClr;
- outline: none;
- padding: 0 10px;
- box-sizing: border-box;
- background-color: @themeColor;
- color: @secColor;
- }
- .iconCalen{
- position: absolute;
- width: 15px;
- top: 8px;
- right: 10px;
- }
- .divide {
- margin: 0 10px;
- color: #fff;
- }
- }
- .managerContainer .filter,.filterclear.abnormalClear {
- margin-bottom: 20px;
- }
- .ui-datepicker-calendar {
- border: 0 none;
- min-width: 0;
- }
- .ui-datepicker thead {
- background-color: #fff;
- color: #c3cbd6;
- }
- .ui-datepicker td {
- padding: 0;
- height: auto;
- color: #657180;
- }
- .ui-datepicker td span, .ui-datepicker td a {
- text-align: center;
- height: 30px;
- line-height: 30px;
- }
- .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
- border: 0;
- background-color: #fff;
- &:hover {
- background-color: #c4d8fe;
- }
- }
- .iconCalen{
- position: absolute;
- width: 15px;
- top: 10px;
- right: 10px;
- }
- .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
- color: #333;
- font-weight: normal;
- height: 30px;
- line-height: 30px;
- margin: 0 5px;
- width: 40%;
- border-radius: 3px;
- }
- .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
- top: 5px;
- }
- .ui-state-active, .ui-widget-content .ui-state-active {
- background-color: @activeColor !important;
- color: #fff;
- }
- .ui-state-highlight, .ui-widget-content .ui-state-highlight {
- background-color: #fff5bf !important;
- color: #657180;
- }
- .ui-widget-header {
- background-color: #fff;
- border: 0 none;
- }
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- .datapickerBox input {
- height: 34px !important;
- line-height: 34px !important;
- box-sizing: border-box;
- }
- input[type="number"] {
- -moz-appearance: textfield;
- }
- input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
- /* WebKit browsers */
- color: #aaa;
- }
- input:-moz-placeholder, textarea:-moz-placeholder {
- /* Mozilla Firefox 4 to 18 */
- color: #aaa;
- }
- input::-moz-placeholder, textarea::-moz-placeholder {
- /* Mozilla Firefox 19+ */
- color: #aaa;
- }
- input:-ms-input-placeholder, textarea:-ms-input-placeholder {
- /* Internet Explorer 10+ */
- color: #aaa;
- }
|