blob: 263d28584bd44971538d1904915dfa88afd8f63f [file] [log] [blame]
Michael Davis9486f542017-05-30 15:35:31 -05001.modal-overlay {
beccabroekd0dbe3b2019-03-11 15:02:25 -05002 width: 100%;
3 height: 100%;
4 z-index: -1;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -05005 background-color: $primary-dark;
beccabroekd0dbe3b2019-03-11 15:02:25 -05006 position: fixed;
7 top: 0;
8 left: 0;
9 margin: 0;
10 padding: 0;
Iftekharul Islamec6bcd12017-09-06 10:49:07 -050011 opacity: 0;
Michael Davis9486f542017-05-30 15:35:31 -050012}
13
Derick Montague30d7c632019-07-31 22:35:48 -050014.modal-overlay.active {
beccabroekd0dbe3b2019-03-11 15:02:25 -050015 z-index: 100;
Derick Montague30d7c632019-07-31 22:35:48 -050016 opacity: 0.5;
Iftekharul Islamec6bcd12017-09-06 10:49:07 -050017 display: block;
Michael Davis98e66602017-08-28 18:37:52 -050018 @include fastTransition-all;
Iftekharul Islamc0161392017-06-14 15:46:15 -050019}
20
Yoshie Muranakae4194ce2019-05-24 14:33:56 -050021.modal:not(.uib-modal) {
beccabroekd0dbe3b2019-03-11 15:02:25 -050022 width: auto;
miramurali235e8785d2019-06-10 15:09:27 -050023 min-width: 450px;
24 max-width: 960px;
beccabroekd0dbe3b2019-03-11 15:02:25 -050025 height: auto;
26 left: 50%;
27 top: 50%;
Derick Montague30d7c632019-07-31 22:35:48 -050028 transform: translate(-50%, -50%);
Michael Davis9486f542017-05-30 15:35:31 -050029 max-width: 850px;
beccabroekd0dbe3b2019-03-11 15:02:25 -050030 min-width: 450px;
Derick Montague30d7c632019-07-31 22:35:48 -050031 padding: 0.8em 1.5em;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050032 border: thin $primary-dark solid;
Derick Montague30d7c632019-07-31 22:35:48 -050033 background-color: $background-01;
beccabroekd0dbe3b2019-03-11 15:02:25 -050034 z-index: 101;
35 position: fixed;
Michael Davis9486f542017-05-30 15:35:31 -050036 overflow: hidden;
Michael Davis9486f542017-05-30 15:35:31 -050037 @include fastTransition-all;
38 @include mediaQuery(medium) {
39 padding: 2.5em;
40 }
41}
42
Derick Montague30d7c632019-07-31 22:35:48 -050043.modal.active {
Michael Davis98e66602017-08-28 18:37:52 -050044 @include fastTransition-all;
Gunnar Mills25fdeb82018-02-21 13:42:04 -060045 display: block;
Iftekharul Islamc0161392017-06-14 15:46:15 -050046}
47
Michael Davis9486f542017-05-30 15:35:31 -050048.modal .page-header {
Derick Montague30d7c632019-07-31 22:35:48 -050049 padding-bottom: 0.7em;
Michael Davis9486f542017-05-30 15:35:31 -050050}
51
52.screen-reader-offscreen {
beccabroekd0dbe3b2019-03-11 15:02:25 -050053 position: absolute;
54 left: -999px;
55 width: 1px;
56 height: 1px;
57 top: auto;
Michael Davis9486f542017-05-30 15:35:31 -050058}
59.modal__content {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050060 border-bottom: 1px solid $border-color-02;
Michael Davis9486f542017-05-30 15:35:31 -050061 padding-bottom: 1em;
62 margin-bottom: 2em;
63}
64.modal__link {
65 display: block;
Derick Montague30d7c632019-07-31 22:35:48 -050066 margin: 0.8em 0 1em;
Michael Davis9486f542017-05-30 15:35:31 -050067 @include mediaQuery(medium) {
68 display: inline-block;
Derick Montague30d7c632019-07-31 22:35:48 -050069 margin: 0.6em 0;
Michael Davis9486f542017-05-30 15:35:31 -050070 }
71}
Derick Montague30d7c632019-07-31 22:35:48 -050072// TODO: Use the form__actions pattern / selector
Michael Davis9486f542017-05-30 15:35:31 -050073.modal__button-wrapper {
74 float: right;
75 button {
Derick Montague30d7c632019-07-31 22:35:48 -050076 margin-bottom: 0.8em;
77 margin-right: 0.8em;
Michael Davis9486f542017-05-30 15:35:31 -050078 display: inline-block;
79 @include mediaQuery(medium) {
Derick Montague30d7c632019-07-31 22:35:48 -050080 margin-left: 0.8em;
Michael Davis9486f542017-05-30 15:35:31 -050081 margin-right: 0;
82 }
83 }
Gunnar Mills25fdeb82018-02-21 13:42:04 -060084}
Yoshie Muranakae4194ce2019-05-24 14:33:56 -050085
86.uib-modal.fade.in {
87 opacity: 1;
88}
89.uib-modal.in .modal-dialog {
90 transform: translate(0, 10vh);
91 margin-top: 50px;
92 .icon__close {
93 margin: 0;
94 padding: 0;
95 }
96 .modal-content {
97 border-radius: 0;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050098 border-color: $primary-dark;
Yoshie Muranakae4194ce2019-05-24 14:33:56 -050099 }
100}
101
Yoshie Muranakafa562732019-07-17 11:23:15 -0500102.uib-modal .modal-dialog {
103 // override bootstrap max-width set at 500px
104 max-width: 550px;
105}
106
Yoshie Muranakae4194ce2019-05-24 14:33:56 -0500107.modal-backdrop.in {
108 opacity: 0.5;
109}
110.uib-modal__content {
111 padding: 1em;
Dixsie Wolmerse3681082019-06-21 13:48:06 -0500112 .modal-header {
113 display: block;
114 }
115 .btn--close {
116 padding: 0;
117 svg {
118 height: 1.6em;
119 }
120 }
Yoshie Muranakae4194ce2019-05-24 14:33:56 -0500121}
Yoshie Muranakafa562732019-07-17 11:23:15 -0500122
123.uib-modal {
124 .btn--close {
125 position: absolute;
126 right: 0;
127 top: 0;
128 svg {
129 height: 2em;
130 }
131 }
Dixsie Wolmerse3681082019-06-21 13:48:06 -0500132}