diff --git a/src/components/shared/modals/Modal.tsx b/src/components/shared/modals/Modal.tsx index 3f9e471d65..0ada5549b1 100644 --- a/src/components/shared/modals/Modal.tsx +++ b/src/components/shared/modals/Modal.tsx @@ -74,7 +74,7 @@ export const Modal = forwardRef>(
resetPolicies(formik.resetForm)} submit={() => saveAccess(formik.values, false)} diff --git a/src/styles/base/_variables.scss b/src/styles/base/_variables.scss index 39c4ec22e6..39586b9c06 100644 --- a/src/styles/base/_variables.scss +++ b/src/styles/base/_variables.scss @@ -148,8 +148,8 @@ $modal-nav-bg-color: #eeeff0; $modal-nav-border-color: #d6d6d6; $modal-nav-link-color: #646E75; $modal-nav-link-active-color: $header-link-color; -$subpage-navigation-link-color: color.adjust($header-link-color, $lightness: 25%); //#fafafa -$subpage-navigation-link-hover-color: color.adjust($header-link-color, $lightness: 35%); //#9cabbc +$subpage-navigation-link-color: $color-silver; //#fafafa +$subpage-navigation-link-hover-color: color.adjust($subpage-navigation-link-color, $lightness: -15%); //#9cabbc // Stats // ---------------------------------------- diff --git a/src/styles/components/_footer.scss b/src/styles/components/_footer.scss index e6e8850c20..ea945f9471 100644 --- a/src/styles/components/_footer.scss +++ b/src/styles/components/_footer.scss @@ -81,7 +81,7 @@ $footer-background-color: color.adjust(variables.$body-background, $lightness: - } ul li { - color: variables.$light-prim-color; + color: variables.$medium-prim-color; margin-left: 10px; vertical-align: top; font-size: 10px; diff --git a/src/styles/components/modals/_footer.scss b/src/styles/components/modals/_footer.scss index ad360eaea6..1c7cf934b1 100644 --- a/src/styles/components/modals/_footer.scss +++ b/src/styles/components/modals/_footer.scss @@ -41,6 +41,8 @@ @include button.btn(green); &.cancel { + float: left; + margin-left: 3%; @include button.btn(white); } diff --git a/src/styles/components/modals/_modal-components.scss b/src/styles/components/modals/_modal-components.scss index 7910d21204..cbb304f55b 100644 --- a/src/styles/components/modals/_modal-components.scss +++ b/src/styles/components/modals/_modal-components.scss @@ -251,7 +251,7 @@ // ---------------------------------------- .details-link { - color: variables.$l-blue; + color: variables.$ref-blue; white-space: nowrap; display: flex; align-items: center; @@ -262,7 +262,7 @@ } &:hover { - color: color.adjust(variables.$l-blue, $lightness: -20%); + color: color.adjust(variables.$ref-blue, $lightness: -20%); } } diff --git a/src/styles/components/modals/_modals-config.scss b/src/styles/components/modals/_modals-config.scss index cf7a6ddbcb..65cfb283fd 100644 --- a/src/styles/components/modals/_modals-config.scss +++ b/src/styles/components/modals/_modals-config.scss @@ -25,7 +25,6 @@ @use "_header"; @use "_nav"; @use "_footer"; -@use "_wizard"; // Components @use "_modal-components"; diff --git a/src/styles/components/modals/_wizard.scss b/src/styles/components/modals/_wizard.scss deleted file mode 100644 index 23d47763d3..0000000000 --- a/src/styles/components/modals/_wizard.scss +++ /dev/null @@ -1,34 +0,0 @@ -/** - * Licensed to The Apereo Foundation under one or more contributor license - * agreements. See the NOTICE file distributed with this work for additional - * information regarding copyright ownership. - * - * - * The Apereo Foundation licenses this file to you under the Educational - * Community License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of the License - * at: - * - * http://opensource.org/licenses/ecl2.txt - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the - * License for the specific language governing permissions and limitations under - * the License. - * - */ - - -.modal.wizard { - - .cancel { - float: left; - margin-left: 3%; - } - - .inactive { - opacity: 0.5; - cursor: default; - } -} \ No newline at end of file