12345678910111213141516171819202122232425262728293031323334353637 |
-
- .webuploader-container {
- position: relative;
- }
- .webuploader-element-invisible {
- position: absolute !important;
- clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
- clip: rect(1px,1px,1px,1px);
- }
- .webuploader-pick {
- width: 100%;
- height: 100%;
- position: relative;
- display: inline-block;
- cursor: pointer;
- color: #fff;
- text-align: center;
- overflow: hidden;
- }
- .webuploader-upload-button {
- position: relative;
- display: inline-block;
- cursor: pointer;
- background: #02c8ae;
- border-radius: 17px;
- height: 34px;
- line-height: 34px;
- color: #fff;
- text-align: center;
- overflow: hidden;
- padding: 0 20px;
- margin-left: 10px;
- }
- .webuploader-pick-disable {
- opacity: 0.6;
- pointer-events:none;
- }
|