1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .uppy-Informer {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- text-align: center;
- font-size: 12px;
- font-weight: 500;
- padding: 0 15px;
- height: 35px;
- line-height: 35px;
- background-color: $color-black; /* no !important */
- color: $color-white;
- opacity: 1;
- transform: none;
- transition: all 300ms ease-in;
- z-index: $zIndex-4;
- .uppy-Dashboard--wide & {
- height: 45px;
- line-height: 45px;
- font-size: 13px;
- }
- }
- .uppy-Informer[aria-hidden=true] {
- opacity: 0;
- transform: translateY(200%);
- transition: all 300ms ease-in;
- }
- .uppy-Informer p {
- margin: 0;
- padding: 0;
- height: 35px;
- line-height: 35px;
- .uppy-Dashboard--wide & {
- height: 45px;
- line-height: 45px;
- }
- }
- .uppy-Informer span {
- line-height: 12px;
- width: 13px;
- height: 13px;
- display: inline-block;
- vertical-align: middle;
- background-color: $color-white;
- border-radius: 50%;
- position: relative;
- top: -1px;
- left: 3px;
- font-size: 10px;
- margin-left: -1px;
- }
- .uppy-Informer span:after {
- line-height: 1.3;
- word-wrap: break-word;
- }
|