|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- /*
- * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
- * Copyright (c) 2013-2018 北京泉江科技有限公司
- * 创建人:陈彬彬
- * 日 期:2017.03.16
- * 描 述:iframe页面布局样式
- */
- body {
- background-color:initial !important;
- }
- .lr-layout-tool-left .lr-layout-tool-item>.form-control {
- border-radius: 4px;
- display:inline-block;
- width:200px;
- }
- .lr-layout-tool-left .btn {
- position:relative;
- display:inline-block;
- height: 28px;
- margin-bottom: 1px;
- line-height: 14px;
- }
-
-
- .lr-left-list>li {
- position:relative;
- width:100%;
- height: 34px;
- line-height: 34px;
- margin-bottom: 10px;
- padding-left: 20px;
- cursor: pointer;
- border-left: 3px solid #fff;
- }
- .lr-left-list>li:hover
- {
- background-color:#F5F5F5;
- border-left:3px solid #F5F5F5;
- }
- .lr-left-list>li.active {
- background-color:#F5F5F5;
- border-left:3px solid #2C3849;
- }
-
- /*多条件查询*/
- .lr-query-wrap {
- position: relative;
- width: 90px;
- height: 28px;
- }
- .lr-query-btn
- {
- position: relative;
- width: 100%;
- height: 100%;
- line-height: 26px;
- cursor: pointer;
- border: 1px solid #ccc;
- border-radius: 4px;
- text-align:center;
- color: #fff;
- background-color: #039cfd;
- border-color: #039cfd;
- }
- .lr-query-btn:hover {
- background-color: #027dcb;
- border-color: #0277c1;
- }
- .lr-query-content {
- position: absolute;
- top: 30px;
- left: 0;
- z-index: 10;
- padding: 10px 10px 10px 0;
- background: #fff;
- box-shadow: 0 0 2px 2px rgba(0,0,0,.15);
- border-radius: 3px;
-
- height:300px;
- width:400px;
-
- display:none;
- }
- .lr-query-content.active {
- display:block;
- }
- .lr-query-formcontent {
- display:none;
- }
-
- .lr-query-arrow {
- position: absolute;
- top: -16px;
- left: 30px;
- border-width: 8px;
- border-style: solid;
- border-color: transparent transparent #d6e1ee;
- }
- .lr-query-inside {
- position: absolute;
- top: -6px;
- left: -7px;
- border-width: 7px;
- border-style: solid;
- border-color: transparent transparent #fff;
- }
- .lr-query-content-bottom {
- position:absolute;
- right:10px;
- bottom:10px;
- height:30px;
- }
- .lr-query-content-bottom .btn {
- margin-left:10px;
- }
-
- .lr-form-item {
- position: relative;
- min-height: 38px;
- padding: 5px 0px 5px 80px;
- }
- .lr-form-item-title {
- position: absolute;
- top: 0;
- left: 0;
- width: 80px;
- height: 100%;
- line-height: 38px;
- text-align: right;
- padding-right: 10px;
- }
- .lr-form-item-100 {
- padding: 5px 0px 5px 100px;
- }
-
- .lr-form-item-100 .lr-form-item-title {
- width: 100px;
- }
- .lr-form-item-title > font {
- position: absolute;
- top: 0;
- right: 2px;
- color: red;
- }
- .lr-form-item .checkbox,.lr-form-item .radio {
- moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- margin-top: 6px;
- margin-bottom: 0;
- }
- .lr-form-item .checkbox input[type=checkbox], .lr-form-item .radio input[type=radio] {
- margin-top: 3px;
- margin-left:-15px;
- }
-
- /*手风琴风格*/
- .learun-AdminAccordion .lr-layout-container {
- border:0;
- border-radius: 0px;
- }
- .learun-AdminAccordion .lr-panel-title {
- border-bottom: 1px solid #dae6f2;
- }
- .learun-AdminAccordion .lr-panel-tool {
- border-bottom:2px solid #00aaef;
- }
-
- .learun-AdminAccordion .btn-default {
- border-color:#cfdae5;
- color:#5f6b7e;
- }
-
- [learun-authorize="yes"] {
- display:none;
- }
-
- /*选项卡设置*/
- .lr-form-tabs {
- position: absolute;
- width: 100%;
- height: 44px;
- top: 0;
- left: 0;
- padding: 5px 5px 0px 5px;
- }
-
- .lr-form-tabs li {
- white-space: nowrap;
- display: inline-block !important;
- float: initial;
- cursor: pointer;
- }
-
- .lr-form-tabs .nav-tabs {
- white-space: nowrap;
- }
-
- .lr-form-tabs .mCS-minimal-dark.mCSB_scrollTools_horizontal {
- top: 32px;
- }
-
- .lr-tab-content, .lr-tab-content > div {
- position: relative;
- width: 100%;
- height: 100%;
- }
-
-
|