| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- .toolBar {
- padding: 15px 0;
- border-bottom: 1px solid #ccc;
- }
- .boxCon table th {
- width: 20%;
- }
- .boxCon table td textarea {
- width: 86%;
- }
- .inpBox {
- height: 24px;
- width: 86%;
- display: inline-block;
- position: relative;
- vertical-align: middle;
- }
- .inps1,
- .inps4 {
- width: 100%;
- height: 24px;
- outline: none;
- border: 0;
- border-image-width: 0;
- padding: 0;
- padding-left: 3px;
- }
- .changeTitle,
- .changeKey,
- .addTitle,
- .addKey {
- width: 86%;
- }
- .boxCon input[type="text"],
- .boxCon textarea {
- outline: none;
- border: none;
- border: 1px solid #ccc;
- padding: 6px;
- }
- .boxCon textarea:focus,
- .boxCon input[type="text"]:focus {
- outline: none!important;
- border-color: #1ab394!important;
- }
- .xl {
- display: inline-block;
- background: url(../../img/dropDown.png) no-repeat;
- height: 100%;
- background-position: center center;
- width: 20px;
- position: absolute;
- right: 0;
- top: 1px;
- background-color: #f7bc8b;
- cursor: pointer;
- }
- .xl:hover {
- background-color: #e6d523;
- }
- .addTree {
- background: #fff;
- position: absolute;
- width: 100%;
- border: 1px solid darkgrey;
- right: 0;
- top: 26px;
- display: none;
- height: 220px;
- z-index: 6;
- overflow-y: auto;
- }
- .treeTable {
- height: 400px;
- /*overflow-y: auto;*/
- }
- .tree {
- height: 100%;
- }
- .trTitle {
- width: 100%;
- height: 34px;
- line-height: 34px;
- border-bottom: 1px solid #ebebeb;
- color: red;
- font-weight: 700;
- margin-bottom: 15px;
- }
- .treeCon {
- height: 90%;
- border: 1px solid #ebebeb;
- overflow-y: auto
- }
- .ztree li {
- width: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .content {
- cursor: pointer;
- }
- .content:hover {
- color: #1ab394;
- }
- .help-block {
- display: inline-block;
- }
- .file_imgs {
- padding: 10px 5px;
- list-style: none;
- margin-bottom: 60px;
- margin-left: -15px;
- }
- .file_imgs li {
- float: left;
- position: relative;
- width: 160px;
- height: 130px;
- margin-left: 10px;
- margin-right: 10px;
- margin-bottom: 40px;
- padding-top: 0;
- padding-bottom: 0;
- }
- .file_imgs li:hover .img_mask {
- display: block;
- }
- .file_imgs .img_mask {
- display: none;
- position: absolute;
- left: 0;
- top: 0;
- background-color: rgba(0, 0, 0, .3);
- width: 100%;
- height: 22px;
- z-index: 1;
- }
- .file_imgs .img_mask i {
- position: absolute;
- right: 5px;
- top: 5px;
- display: inline-block;
- width: 13px;
- height: 12px;
- cursor: pointer;
- background: url(../../img/file_img_icons.png) no-repeat 0 0;
- }
- .file_imgs .file_name {
- width: 100%;
- display: inline-block;
- text-align: center;
- /*overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;*/
- word-break: break-all;
- padding-top: 8px;
- }
- .file_imgs li img {
- width: 100%;
- height: 100%;
- border: 0;
- vertical-align: middle;
- }
- .file_imgs .upload-state-done .img_state {
- display: block;
- position: absolute;
- right: 0;
- bottom: 7px;
- width: 0;
- height: 0;
- border-bottom: 40px solid #01b2fe;
- border-left: 40px solid transparent;
- overflow: inherit;
- }
- .file_imgs .img_state i {
- position: absolute;
- right: 4px;
- bottom: -32px;
- display: inline-block;
- width: 15px;
- height: 11px;
- background: url(../../img/file_img_icons.png) no-repeat 0 -16px;
- }
- .error {
- color: red;
- text-align: center;
- }
- .noThumb {
- width: 109px;
- height: 109px;
- text-align: center;
- color: #1aaad0;
- }
- .noThumb p{
- text-align: center;
- position: absolute;
- /* margin-left: 25px; */
- left: 50px;
- }
- .glyphicon.glyphicon-paperclip {
- font-size: 80px;
- left: 25px;
- text-align: center;
- }
|