diff --git a/src/components/modal/addtostudio/modal.jsx b/src/components/modal/addtostudio/modal.jsx
index d22ce6efd..b5c37763f 100644
--- a/src/components/modal/addtostudio/modal.jsx
+++ b/src/components/modal/addtostudio/modal.jsx
@@ -196,7 +196,9 @@ class AddToStudioModal extends React.Component {
key={studio.id}
onClick={() => this.handleToggleAdded(studio.id)}
>
- {truncate(studio.title, {'length': 20, 'separator': /[,:\.;]*\s+/})}
+
+ {truncate(studio.title, {'length': 20, 'separator': /[,:\.;]*\s+/})}
+
@@ -245,7 +247,9 @@ class AddToStudioModal extends React.Component {
name="closeButton"
type="button"
>
-
+
+
+
{this.state.addToStudioWaiting ? [
] : [
]}
diff --git a/src/components/modal/addtostudio/modal.scss b/src/components/modal/addtostudio/modal.scss
index 821ba9bc7..9109d94be 100644
--- a/src/components/modal/addtostudio/modal.scss
+++ b/src/components/modal/addtostudio/modal.scss
@@ -9,14 +9,15 @@
margin: 100px auto;
outline: none;
padding: 0;
- width: 36rem;
+ height: 388px; /* 24.25rem; */
+ width: 36.25rem; /* 580px; */
overflow: hidden;
user-select: none;
}
.addToStudio-modal-header {
box-shadow: inset 0 -1px 0 0 $ui-dark-blue;
- background-color: $ui-royal-blue;
+ background-color: #3F9AFB;
padding-top: .75rem;
width: 100%;
height: 3rem;
@@ -44,22 +45,23 @@
}
.studio-list-inner-scrollbox {
- height: 15rem;
+ height: 16.9375rem;
overflow: scroll;
overflow-x: hidden;
margin-right: 8px;
}
.studio-list-inner-scrollbox::-webkit-scrollbar {
- width: 7px;
+ width: 8px;
background-color: $ui-blue-10percent-solid;
}
.studio-list-inner-scrollbox::-webkit-scrollbar-thumb {
background-color: $active-dark-gray;
- border-radius: 5px;
+ height: 92px;
+ border-radius: 4px;
}
.studio-list-inner-scrollbox::-webkit-scrollbar-track {
- margin-top: 10px;
+ margin-top: 8px;
margin-bottom: 10px;
}
@@ -68,7 +70,7 @@
display: flex;
justify-content: flex-start;
flex-flow: row wrap;
- padding: 1rem 3rem;
+ padding: 0 0.21875rem 0 1.46875rem;
min-height: 30rem;
}
@@ -81,30 +83,42 @@
bottom: 0;
background: linear-gradient(
$transparent,
- $ui-blue-10percent
+ #E4F0FF
);
- /* background: linear-gradient(180deg, rgba(228,240,255,0) 0%, #E4F0FF 100%); */
width: 100%;
- height: 2rem;
+ height: 32px;
}
-
.studio-selector-button {
background-color: $ui-white;
- color: $type-gray;
- font-weight: 800;
height: 2.5rem;
- margin: 0.5rem 0.5rem;
- padding: 0.5rem 0.5rem;
+ margin: 0.21875rem 0.21875rem;
+ padding: 0;
border-radius: 0.5rem;
box-sizing: border-box;
- width: 40%;
+ width: 16.1875rem; /* 259px */
display: flex;
justify-content: space-between;
+ position: relative;
+}
+
+.studio-selector-button-text {
+ /* color: $type-gray; */
+ width: 13.3125rem;
+ color: #575E75;
+ font-family: "Helvetica Neue";
+ font-size: 0.875rem;
+ font-weight: 800;
+ line-height: 1.25rem;
+ position: absolute;
+ margin: 0.575rem 2.18375rem 0.175rem 0.6875rem;
+ /* per spec, should be
+ margin: 0.375rem 2.18375rem 0.375rem 0.6875rem;
+ */
}
.studio-selector-button-selected {
- background-color: $ui-green;
+ background-color: hsl(165,100%,37%);
color: $ui-white;
}
@@ -113,14 +127,19 @@
color: $ui-white;
font-weight: 800;
height: 1.5rem;
- margin: 0rem 0rem;
+ width: 1.5rem;
+ margin: 0.5rem 0.625rem 0.5rem 14.0625rem;
padding: 0rem 0.5rem;
border-radius: 0.75rem;
box-sizing: border-box;
- width: 1.5rem;
+ position: absolute;
}
.studio-status-icon-selected {
- background-color: $ui-green;
+ background-color: hsl(165,100%,37%);
color: $ui-white;
}
+
+.submit-button {
+ background-color: #3F9AFB;
+}
diff --git a/src/components/modal/base/modal.scss b/src/components/modal/base/modal.scss
index 89c5a16c7..9dc08cb77 100644
--- a/src/components/modal/base/modal.scss
+++ b/src/components/modal/base/modal.scss
@@ -4,7 +4,7 @@
.modal-content {
position: relative;
margin: 3.75rem auto;
- border-radius: 1rem;
+ border-radius: 0.5rem;
box-shadow: 0 0 0 1px $active-gray;
background-color: $ui-white;
padding: 0;
@@ -70,5 +70,11 @@ $modal-close-size: 1rem;
}
.action-button {
- margin: 0 0 0 .5rem;
+ margin: 0 0 0 0.54625rem;
+ padding: 6px 1.25rem 14px 1.25rem;
+ height: 36px;
}
+
+.action-button-text {
+}
+