| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .webuploader-container {
- position: relative;
- display: inline-block;
- }
- .webuploader-element-invisible {
- position: absolute !important;
- clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
- clip: rect(1px,1px,1px,1px);
- }
- .webuploader-pick {
- position: relative;
- display: inline-block;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: 400;
- line-height: 1.42857143;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 4px;
- cursor: pointer;
- color: #333;
- background-color: #fff;
- border-color: #ccc;
- padding: 6px 12px;
- overflow: hidden;
- }
- .webuploader-pick-hover {
- color: #00a4ff;
- }
- .webuploader-pick-disable {
- opacity: 0.6;
- pointer-events:none;
- }
- #uploadimg .progress{
- border: 1px solid #1483d8;
- width: 109px;
- background: #fff;
- height: 18px;
- position: relative;
- display: inline-block;
- text-align: center;
- line-height: 20px;
- color: #6dbfff;
- position: relative;
- margin-right: 10px;
- }
- #uploadimg .progress span.percentage {
- width: 0;
- height: 100%;
- left: 0;
- top: 0;
- background: #1483d8;
- position: absolute;
- }
- #uploadimg .progress span.text {
- position: relative;
- z-index: 10;
- color: #6dbfff;
- }
|