forked from LiveCarta/LiveCartaWP
redirect modal fix
This commit is contained in:
@@ -75,7 +75,7 @@ body {
|
||||
color: #000;
|
||||
font: normal 13px arial, helvetica, sans-serif;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
min-width: 300px;
|
||||
min-width: 360px;
|
||||
font-size: 12px;
|
||||
padding-right: 0 !important; }
|
||||
@media (min-width: 480px) {
|
||||
@@ -572,17 +572,21 @@ a:focus {
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%); }
|
||||
.front-accordion .form-group.checkbox-label {
|
||||
padding-left: 0;
|
||||
width: auto; }
|
||||
padding-left: 20px;
|
||||
width: auto;
|
||||
position: relative; }
|
||||
.front-accordion .form-group.checkbox-label label {
|
||||
position: relative;
|
||||
max-width: none; }
|
||||
.front-accordion .form-group.checkbox-label label input[type="checkbox"], .front-accordion .form-group.checkbox-label label input[type="radio"] {
|
||||
position: absolute;
|
||||
left: -20px;
|
||||
top: 2px; }
|
||||
.front-accordion .form-group.checkbox-label.disabled label {
|
||||
color: #aaa; }
|
||||
.front-accordion .form-group.checkbox-label.pl {
|
||||
padding-left: 30px; }
|
||||
.front-accordion .form-group.checkbox-label .restrict-tipsy {
|
||||
padding-left: 17px;
|
||||
font-weight: 600;
|
||||
font-size: 11px;
|
||||
margin-bottom: -5px;
|
||||
@@ -648,6 +652,18 @@ blockquote {
|
||||
.popover-title {
|
||||
display: none; }
|
||||
|
||||
@-webkit-keyframes bgmove {
|
||||
from {
|
||||
background-position: 0 0; }
|
||||
to {
|
||||
background-position: 40px 0; } }
|
||||
|
||||
@keyframes bgmove {
|
||||
from {
|
||||
background-position: 0 0; }
|
||||
to {
|
||||
background-position: 40px 0; } }
|
||||
|
||||
/* Icons. */
|
||||
@font-face {
|
||||
font-family: lawcarta;
|
||||
@@ -710,6 +726,9 @@ blockquote {
|
||||
color: #e89f29;
|
||||
font-size: 16px; }
|
||||
|
||||
.icon-discount:before {
|
||||
content: "\e942"; }
|
||||
|
||||
.icon-upload:before {
|
||||
content: "\e941"; }
|
||||
|
||||
@@ -921,6 +940,147 @@ blockquote {
|
||||
-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); }
|
||||
|
||||
.modal {
|
||||
padding: 0 !important;
|
||||
font-family: 'Open Sans',sans-serif; }
|
||||
|
||||
@media (min-width: 769px) {
|
||||
.modal {
|
||||
padding: 40px 20px 30px !important; } }
|
||||
|
||||
.modal .cont {
|
||||
padding: 0 20px;
|
||||
max-width: 960px; }
|
||||
|
||||
@media (min-width: 769px) {
|
||||
.modal .cont {
|
||||
padding: 0 75px; } }
|
||||
|
||||
.modal .modal-content {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
border-radius: 0; }
|
||||
|
||||
.modal .modal-dialog {
|
||||
width: auto;
|
||||
max-width: 768px;
|
||||
min-height: 100%;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0 0 10px #666;
|
||||
box-shadow: 0 0 10px #666;
|
||||
padding-bottom: 25px; }
|
||||
|
||||
@media (min-width: 769px) {
|
||||
.modal .modal-dialog {
|
||||
min-height: 0;
|
||||
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); } }
|
||||
|
||||
.modal .modal-dialog .modal-head {
|
||||
font-size: 20px;
|
||||
color: #9e9671;
|
||||
margin-bottom: 13px;
|
||||
padding: 0;
|
||||
border: 0; }
|
||||
|
||||
@media (min-width: 540px) {
|
||||
.modal .modal-dialog .modal-head {
|
||||
font-size: 24px; } }
|
||||
|
||||
.modal .modal-dialog .modal-head .cont {
|
||||
padding-top: 35px;
|
||||
color: #9e9671; }
|
||||
|
||||
.modal .modal-dialog .modal-head .header-number {
|
||||
font-weight: 600;
|
||||
margin-right: 5px; }
|
||||
|
||||
.modal .modal-dialog .modal-head.alert {
|
||||
padding: 0;
|
||||
color: #b94c11; }
|
||||
|
||||
.modal .modal-dialog .modal-head.alert .cont {
|
||||
color: #b94c11; }
|
||||
|
||||
.modal .modal-dialog .editions-list {
|
||||
list-style: none;
|
||||
font-size: 12px;
|
||||
padding: 0 0 0 18px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
margin-top: 5px; }
|
||||
|
||||
.modal.wide .modal-dialog {
|
||||
max-width: 840px; }
|
||||
|
||||
.modal.confirm .modal-dialog {
|
||||
max-width: 480px;
|
||||
padding: 15px;
|
||||
min-height: 0; }
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.modal.confirm .cont {
|
||||
padding: 0 20px; } }
|
||||
|
||||
.modal .close-modal {
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 14px;
|
||||
top: 9px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: none;
|
||||
font-weight: 700;
|
||||
color: #9b9b9b;
|
||||
cursor: pointer; }
|
||||
|
||||
.modal .close-modal span {
|
||||
color: #9b9b9b;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
-webkit-transform: translate(-50%, -50%) rotate(45deg);
|
||||
transform: translate(-50%, -50%) rotate(45deg);
|
||||
font-weight: 100;
|
||||
font-size: 18px; }
|
||||
|
||||
.modal .close-modal:hover {
|
||||
text-decoration: none;
|
||||
opacity: .7; }
|
||||
|
||||
.modal .modal-body {
|
||||
display: block;
|
||||
padding: 15px 0 0; }
|
||||
|
||||
.modal .modal-body:after, .modal .modal-body:before {
|
||||
content: " ";
|
||||
display: table; }
|
||||
|
||||
.modal .modal-body:after {
|
||||
clear: both; }
|
||||
|
||||
.modal .modal-body p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 400;
|
||||
color: #475669; }
|
||||
|
||||
.modal .modal-footer {
|
||||
margin: 0 0;
|
||||
text-align: right;
|
||||
padding: 25px 0 15px;
|
||||
border: none; }
|
||||
|
||||
.modal .button {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none; }
|
||||
|
||||
.modal .modal-dialog .modal-head .cont {
|
||||
color: #3090f0; }
|
||||
|
||||
/* Header. */
|
||||
header {
|
||||
height: 40px;
|
||||
@@ -954,6 +1114,11 @@ header {
|
||||
top: 15px;
|
||||
-webkit-transform: none;
|
||||
transform: none; } }
|
||||
header .main-logo .redirect-logo {
|
||||
display: none; }
|
||||
header .main-logo.law-logo .redirect-logo {
|
||||
display: inline;
|
||||
margin-left: 3px; }
|
||||
header .cont {
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
@@ -1111,6 +1276,12 @@ header {
|
||||
header .sign-block {
|
||||
display: inline-block;
|
||||
right: auto; } }
|
||||
header .sign-block .business-link {
|
||||
border-top: 1px solid #999; }
|
||||
header .sign-block .business-link + li {
|
||||
border-top: 1px solid #999; }
|
||||
header .sign-block .business-link + .business-link {
|
||||
border-top: 0; }
|
||||
header .sign-block .signed-user-block {
|
||||
position: relative; }
|
||||
header .sign-block .signed-user-block .user-options-list,
|
||||
@@ -1139,7 +1310,7 @@ header {
|
||||
header .sign-block .signed-user-block .user-options-list a:hover,
|
||||
header .sign-block .signed-user-block .dropdown-menu a:hover {
|
||||
text-decoration: none;
|
||||
background: #fff; }
|
||||
background: #eee; }
|
||||
header .sign-block .signed-user-block .dropdown-menu .profile-with-warning {
|
||||
display: block;
|
||||
position: relative; }
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -72,6 +72,147 @@
|
||||
.button.bordered:hover {
|
||||
background: rgba(0, 0, 0, 0.05); }
|
||||
|
||||
.modal {
|
||||
padding: 0 !important;
|
||||
font-family: 'Open Sans',sans-serif; }
|
||||
|
||||
@media (min-width: 769px) {
|
||||
.modal {
|
||||
padding: 40px 20px 30px !important; } }
|
||||
|
||||
.modal .cont {
|
||||
padding: 0 20px;
|
||||
max-width: 960px; }
|
||||
|
||||
@media (min-width: 769px) {
|
||||
.modal .cont {
|
||||
padding: 0 75px; } }
|
||||
|
||||
.modal .modal-content {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
border-radius: 0; }
|
||||
|
||||
.modal .modal-dialog {
|
||||
width: auto;
|
||||
max-width: 768px;
|
||||
min-height: 100%;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0 0 10px #666;
|
||||
box-shadow: 0 0 10px #666;
|
||||
padding-bottom: 25px; }
|
||||
|
||||
@media (min-width: 769px) {
|
||||
.modal .modal-dialog {
|
||||
min-height: 0;
|
||||
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); } }
|
||||
|
||||
.modal .modal-dialog .modal-head {
|
||||
font-size: 20px;
|
||||
color: #9e9671;
|
||||
margin-bottom: 13px;
|
||||
padding: 0;
|
||||
border: 0; }
|
||||
|
||||
@media (min-width: 540px) {
|
||||
.modal .modal-dialog .modal-head {
|
||||
font-size: 24px; } }
|
||||
|
||||
.modal .modal-dialog .modal-head .cont {
|
||||
padding-top: 35px;
|
||||
color: #9e9671; }
|
||||
|
||||
.modal .modal-dialog .modal-head .header-number {
|
||||
font-weight: 600;
|
||||
margin-right: 5px; }
|
||||
|
||||
.modal .modal-dialog .modal-head.alert {
|
||||
padding: 0;
|
||||
color: #b94c11; }
|
||||
|
||||
.modal .modal-dialog .modal-head.alert .cont {
|
||||
color: #b94c11; }
|
||||
|
||||
.modal .modal-dialog .editions-list {
|
||||
list-style: none;
|
||||
font-size: 12px;
|
||||
padding: 0 0 0 18px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
margin-top: 5px; }
|
||||
|
||||
.modal.wide .modal-dialog {
|
||||
max-width: 840px; }
|
||||
|
||||
.modal.confirm .modal-dialog {
|
||||
max-width: 480px;
|
||||
padding: 15px;
|
||||
min-height: 0; }
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.modal.confirm .cont {
|
||||
padding: 0 20px; } }
|
||||
|
||||
.modal .close-modal {
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 14px;
|
||||
top: 9px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: none;
|
||||
font-weight: 700;
|
||||
color: #9b9b9b;
|
||||
cursor: pointer; }
|
||||
|
||||
.modal .close-modal span {
|
||||
color: #9b9b9b;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
-webkit-transform: translate(-50%, -50%) rotate(45deg);
|
||||
transform: translate(-50%, -50%) rotate(45deg);
|
||||
font-weight: 100;
|
||||
font-size: 18px; }
|
||||
|
||||
.modal .close-modal:hover {
|
||||
text-decoration: none;
|
||||
opacity: .7; }
|
||||
|
||||
.modal .modal-body {
|
||||
display: block;
|
||||
padding: 15px 0 0; }
|
||||
|
||||
.modal .modal-body:after, .modal .modal-body:before {
|
||||
content: " ";
|
||||
display: table; }
|
||||
|
||||
.modal .modal-body:after {
|
||||
clear: both; }
|
||||
|
||||
.modal .modal-body p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 400;
|
||||
color: #475669; }
|
||||
|
||||
.modal .modal-footer {
|
||||
margin: 0 0;
|
||||
text-align: right;
|
||||
padding: 25px 0 15px;
|
||||
border: none; }
|
||||
|
||||
.modal .button {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none; }
|
||||
|
||||
.modal .modal-dialog .modal-head .cont {
|
||||
color: #3090f0; }
|
||||
|
||||
header {
|
||||
background: #fff; }
|
||||
header .main-logo {
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user