123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // Misago Modals
- // --------------------------------------------------
- // Modals displaying messages
- // Small displays
- @media screen and (max-width: @screen-sm-max) {
- .modal-message {
- text-align: center;
- .message-icon {
- margin: @line-height-computed * 1.5;
- .material-icon {
- font-size: @message-page-icon-size * 2;
- }
- }
- }
- }
- // Full displays
- @media screen and (min-width: @screen-md-min) {
- .modal-message {
- .message-icon {
- float: left;
- .material-icon {
- font-size: @message-page-icon-size;
- }
- }
- .message-body {
- margin-left: @message-page-icon-size + @line-height-computed;
- }
- }
- }
- // Registration modal
- .modal-register .modal-footer a {
- float: left;
- margin-top: @line-height-computed / 3;
- }
- @media screen and (max-width: @screen-sm-max) {
- .modal-register .modal-footer {
- text-align: center;
- a {
- display: block;
- }
- .btn {
- display: block;
- float: none;
- margin-top: @line-height-computed / 2;
- width: 100%;
- }
- }
- }
|