|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- .form-warp {
- position: relative;
- width: 100%;
- height: 100%;
- padding-left: 180px;
- }
-
- .form-warp-left {
- position: absolute;
- left: 0;
- top: 0;
- width: 180px;
- height: 100%;
- }
-
-
- .tree {
- position: relative;
- height: 100%;
- width: 100%;
- border-right: 1px solid #ddd;
- }
-
- .form-warp-main {
- position: relative;
- height: 100%;
- width: 100%;
- padding-top: 28px;
- }
-
- .item-search {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 28px;
- border-bottom: 1px solid #ddd;
- }
-
- .item-list {
- position: relative;
- height: 100%;
- width: 100%;
- }
-
- .form-warp-right {
- position: absolute;
- top: 0;
- right: -180px;
- height: 100%;
- width: 180px;
- border-left: 1px solid #ddd;
- padding-top: 28px;
- background-color: #fff;
- z-index: 10;
- }
-
- .form-warp-right-close {
- position: absolute;
- top: 7px;
- right: 4px;
- width: 12px;
- height: 13px;
- display: block;
- background: url(/Content/images/tab_close.png) no-repeat;
- cursor: pointer;
- }
-
- .form-warp-right-close:hover {
- background-position: 0 -12px;
- }
-
- .form-warp-right-title {
- position: absolute;
- top: 0;
- left: 0;
- height: 28px;
- line-height: 27px;
- padding-left: 10px;
- width: 100%;
- border-bottom: 1px solid #ddd;
- padding-right: 80px;
- }
-
- .selected-item-list-warp {
- position: relative;
- height: 100%;
- width: 100%;
- }
-
- .item-selected-btn {
- position: absolute;
- top: 0;
- right: 0;
- height: 100%;
- width: 80px;
- line-height: 27px;
- text-align: center;
- border-left: 1px solid #ddd;
- cursor: pointer;
- background-color: #eee;
- color: #666;
- }
- .item-selected-btn-unknow {
- position: absolute;
- top: 0;
- right: 80px;
- height: 100%;
- width: 80px;
- line-height: 27px;
- text-align: center;
- border-left: 1px solid #ddd;
- cursor: pointer;
- background-color: #eee;
- color: #666;
- }
-
- .item-selected-btn:hover {
- color: #333;
- }
-
- .form-control {
- border: 0px;
- height: 100%;
- }
-
- .input-query {
- position: absolute;
- right: 166px;
- top: 2px;
- color: #ccc;
- font-size: 16px;
- cursor: pointer;
- }
-
-
- .item-selected-box {
- position: relative;
- width: 160px;
- height: 30px;
- border: 1px solid #ccc;
- border-radius: 2px;
- margin: auto;
- margin-top: 10px;
- padding: 5px 0 0 10px;
- }
-
- .item-selected-box p {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin: 0;
- }
-
- .item-reomve {
- position: absolute;
- top: 2px;
- right: 2px;
- width: 12px;
- height: 13px;
- display: block;
- background: url(/Content/images/tab_close.png) no-repeat;
- cursor: pointer;
- }
-
- .item-reomve:hover {
- background-position: 0 -12px;
- }
|