123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /*
- * 描 述:lrLayout 页面布局样式(目前支持左右布局)
- */
- .lr-layout {
- position: relative;
- height: 100%;
- width: 100%;
- padding: 5px;
- }
- .lr-layout.lr-layout-left-center {
- padding-left: 203px;
- }
- .lr-layout-left {
- position: absolute;
- top: 0;
- left: 0;
- width: 203px;
- height: 100%;
- padding: 10px 0px 10px 10px;
- }
- .lr-layout-center {
- position: relative;
- width: 100%;
- height: 100%;
- padding: 5px;
- }
- .lr-layout-wrap {
- position: relative;
- width: 100%;
- height: 100%;
- background-color: #fff;
- border: 1px solid #ccc;
- padding-top: 32px;
- border-radius: 3px;
- -webkit-transition: opacity 0.25s ease-out;
- -moz-transition: opacity 0.25s ease-out;
- transition: opacity 0.25s ease-out;
- -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
- box-shadow: 0 1px 1px rgba(0,0,0,.05);
- }
- .lr-layout-center .lr-layout-wrap {
- padding-top: 87px;
- }
- .lr-layout-center .lr-layout-wrap.lr-layout-wrap-notitle {
- padding-top: 55px;
- }
- .lr-layout-left .lr-layout-wrap.lr-layout-wrap-notitle {
- padding-top: 0px;
- }
- .lr-uitheme-accordion .lr-layout-wrap {
- border-radius: 0px;
- }
- .lr-layout-title {
- position: absolute;
- top: 0;
- left: 0;
- height: 32px;
- line-height: 32px;
- width: 100%;
- border-bottom: 1px solid #ccc;
- color: #666;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-weight: bold;
- padding-left: 9px;
- font-size: 12px;
- -moz-user-select: text;
- -webkit-user-select: text;
- -ms-user-select: text;
- -khtml-user-select: text;
- user-select: text;
- }
- .lr-layout-tool {
- position: absolute;
- top: 32px;
- left: 0;
- width: 100%;
- height: 55px;
- border-bottom: 1px solid #ccc;
- z-index: 3;
- display: flex;
- align-items: center;
- padding:0px 5px;
- box-sizing:border-box;
- }
- .lr-layout-center .lr-layout-wrap.lr-layout-wrap-notitle .lr-layout-tool {
- top: 0px;
- }
- .lr-layout-tool-left {
- /* position: absolute;
- left: 10px;
- top: 0;
- height: 100%;*/
- flex: 1;
- justify-self: end;
- display: flex;
- justify-content: flex-end;
- padding-top: 2px;
- }
- .lr-layout-tool-left .lr-layout-tool-item {
- /* position: relative;
- float: left;
- padding-top: 13px;
- padding-left: 5px;*/
- margin: 0 2px;
- }
- .lr-layout-tool-right {
- /* position: absolute;
- right: 15px;
- top: 0;
- height: 100%;
- padding-top: 12px;*/
- /* display: flex;
- justify-content: center;
- align-items: center;
- margin: 0 6px;*/
- }
- .lr-layout-body {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .lr-layout-move {
- position: absolute;
- top: 0;
- z-index: 1;
- }
- .lr-layout-move-right {
- right: -8px;
- width: 8px;
- height: 100%;
- cursor: col-resize;
- }
|