| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- ul li {
- float: initial;
- list-style: none;
- }
- .common {
- width: 100%;
- text-align: center;
- padding: 10px 15px;
- }
- .common table {
- width: 100%;
- }
- .common table th {
- padding: 5px 8px 5px 0;
- text-align: right;
- /* width: 20%;*/
- }
- .common table td {
- padding: 6px 0 5px 10px;
- text-align: left;
- color: #717171;
- line-height: 200%;
- }
- #addNote {
- width: 1000px;
- }
- .inpBox {
- border: 1px solid #a9a9a9;
- height: 32px;
- width: 100%;
- display: inline-block;
- position: relative;
- vertical-align: middle;
- }
- .inps1,.inps2,.inps3,
- .inps4,.inps5,.inps6 {
- width: 100%;
- height: 30px;
- outline: none;
- border: 0;
- border-image-width: 0;
- padding: 0;
- padding-left: 3px;
- }
- .drop-down {
- display: inline-block;
- background: url(../../img/dropDown.png) no-repeat;
- height: 100%;
- background-position: center center;
- width: 20px;
- position: absolute;
- right: 0;
- top: 0px;
- background-color: #f7bc8b;
- cursor: pointer;
- }
- .drop-down:hover {
- background-color: #e6d523;
- }
- .add-tree {
- background: #fff;
- position: absolute;
- width: 100%;
- border: 1px solid darkgrey;
- right: 0;
- top: 30px;
- display: none;
- /*height: 220px;*/
- overflow-y: auto;
- z-index: 10;
- text-align: center;
- }
- .add-tree .list li:hover{
- background: #ebebeb;
- color: #717171;
- }
- .ztree li {
- width: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
|