Skip to content

Commit

Permalink
Merged PR 5078: Merged PR 5066: AB#9422 - FE refresh
Browse files Browse the repository at this point in the history
Merged PR 5066: AB#9422 - FE refresh

Related work items: #9422

Related work items: #9422
  • Loading branch information
Alexander Doroshenko committed Nov 26, 2024
2 parents c489703 + 0084fb9 commit 1691ceb
Show file tree
Hide file tree
Showing 89 changed files with 5,382 additions and 3,914 deletions.
388 changes: 217 additions & 171 deletions FrontEnd/Lighthouse/sass/abstracts/_mixins.scss

Large diffs are not rendered by default.

451 changes: 232 additions & 219 deletions FrontEnd/Lighthouse/sass/abstracts/vars/_colors.scss

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions FrontEnd/Lighthouse/sass/abstracts/vars/_fontSizes.scss
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
$font-small:11px;
$font-normal:14px;
$font-basic:14px;
$font-medium:18px;
$font-big:20px;
$font-extrabig:24px;
$font-small: 11px;
$font-normal: 14px;
$font-basic: 14px;
$font-medium: 18px;
$font-big: 20px;
$font-extrabig: 24px;
//Navigation
$navigation-font-small:12px;
$navigation-font-basic:16px;
$navigation-font-basic-submenu:15px;
$navigation-icon-size:24px;
$navigation-font-small: 12px;
$navigation-font-basic: 14px;
$navigation-font-basic-submenu: 14px;
$navigation-icon-size: 24px;
//Tabs
$tab-font-header:16px;
$tab-font-header: 16px;
//Accordion
$accordion-header:16px;
$accordion-header: 16px;
//Breadcrumb
$breadcrumb-font:15px;
$breadcrumb-font: 15px;
// Link List
$link-list-title-font:15px;
$link-list-title-font: 15px;
10 changes: 6 additions & 4 deletions FrontEnd/Lighthouse/sass/abstracts/vars/_sizes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,22 @@ $hero-height: 300px;
$category-hero-height: 500px;
$category-hero-height-small: 300px;

$carousel-slide-height: 500px;
$carousel-slide-height: 70vh;
$carousel-nav-height: 20px;
$carousel-bullet-size: 12px;
$carousel-bullet-width: 48px;
$carousel-bullet-height: 4px;

$home-carousel-slide-height: 500px;
$home-carousel-slide-height: 70vh;
$home-carousel-nav-width: 150px;
$home-carousel-nav-height: 200px;
$home-carousel-nav-clip-height: 30px;

$footer-carousel-slide-height: 200px;
$footer-carousel-slide-height: 340px;

//Breakpoints
$break-desktop-large: 1300px;
$break-desktop: 1024px;
$break-mobile: 380px;
$break-mobile-horizontal: 640px;
$break-mobile-large: 786px;
$break-mobile-large: 786px;
94 changes: 51 additions & 43 deletions FrontEnd/Lighthouse/sass/base/reset/inputs.scss
Original file line number Diff line number Diff line change
@@ -1,56 +1,64 @@
@import "../../abstracts/mixins";
@import "../../abstracts/vars";
label {
background: transparent;
color: $text-basic;
}
input, button {
display: inline-block;
box-sizing: border-box;
background: $bg-basic-color !important;
border: 1px solid $border-gray;
border-radius: 0 !important;
color: $text-basic;
font-weight: normal;
padding: 8px 2%;
clear: both;
height: auto;
font-size: $font-normal;
background: transparent;
color: $text-basic;
}
input,
button {
display: inline-block;
box-sizing: border-box;
background: $bg-basic-color !important;
border: 1px solid $border-gray;
border-radius: 0 !important;
color: $text-basic;
font-weight: normal;
padding: 8px 12px;
clear: both;
height: auto;
font-size: $font-normal;
}
input:focus {
border: 1px solid $border-gray;
border: 1px solid $border-gray;
}
input[type="submit"], input[type="reset"], input[type="button"], button {
border: 1px solid $border-basic-color;
padding: 5px 20px;
&:hover {
background: $bg-light-gray !important;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
border: 1px solid $border-basic-color;
padding: 5px 20px;
&:hover {
background: $bg-light-gray !important;
}
}
input::-moz-focus-inner, button::-moz-focus-inner {
border: 0;
padding: 0;
input::-moz-focus-inner,
button::-moz-focus-inner {
border: 0;
padding: 0;
}
input[type="text"] {
font-size: 13px;
font-size: 13px;
}
input[type="text"], input[type="email"], input[type="password"], textarea, select {
box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
color: $text-basic;
width: 100%;
background: #fff;
border: 1px solid $border-gray;
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
color: $text-basic;
width: 100%;
background: #fff;
border: 1px solid $border-gray;
}
select {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: none;
cursor: pointer;
padding: 5px;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: none;
cursor: pointer;
padding: 5px;
}
154 changes: 86 additions & 68 deletions FrontEnd/Lighthouse/sass/base/richtext/_richtext.scss
Original file line number Diff line number Diff line change
@@ -1,85 +1,103 @@
h1, h2, h3, h4, h5, h6 {
color: $text-heading-color;
h1,
h2,
h3,
h4,
h5,
h6 {
@include proxima-font(bold);

color: $text-heading-color;
}
h1, h2 {
margin: $small-margin 0;
h1,
h2 {
margin: $small-margin 0;
}
h3, h4, p {
margin: $middle-margin 0;
h3,
h4,
p {
margin: $middle-margin 0;
}
h5, h6 {
margin: $extrasmall-margin 0 0;
h5,
h6 {
margin: $extrasmall-margin 0 0;
}
strong {
font-weight: 700;
font-weight: 700;
}
ul, ol {
padding-bottom: $middle-margin;
padding-top: $middle-margin;
margin-left: $small-margin;
ul,
ol {
padding-bottom: $middle-margin;
padding-top: $middle-margin;
margin-left: $small-margin;
}
li {
font-size: $font-normal;
margin-left: 15px;
font-size: inherit;
margin-left: 15px;
}
ul {
li {
list-style: disc;
list-style-position: inside;
}
li {
list-style: disc;
list-style-position: inside;
}
}
ol {
li {
list-style: decimal;
list-style-position: inside;
}
li {
list-style: decimal;
list-style-position: inside;
}
}
a {
color: $rich-content-link-color;
text-decoration: underline;
font-size: 1em;
&:hover {
color: $rich-content-link-color-active;
}
color: $rich-content-link-color;
text-decoration: underline;
font-size: 1em;
&:hover {
color: $rich-content-link-color-active;
}
}
table {
height: auto !important;
border: 2px solid $border-gray;
&, tr, th, td {
border: solid 2px $border-gray;
background: $bg-basic-color;
border-collapse: collapse;
vertical-align: middle;
}
tr, th, td {
padding: 5px;
}
caption {
background-color: $bg-light-gray;
overflow: hidden;
padding: 10px;
font-size: $font-big;
font-weight: bold;
margin-left: 0;
}
tr {
border: none;
}
th, td {
border-width: 2px 0 0 2px;
}
th {
background-color: lighten($bg-light-gray, 5%);
font-size: $font-normal;
font-weight: bold;
padding: 7px;
&:first-child {
border-left: 0;
}
}
td {
&:first-child {
border-left: 0;
}
}
height: auto !important;
border: 2px solid $border-gray;
&,
tr,
th,
td {
border: solid 2px $border-gray;
background: $bg-basic-color;
border-collapse: collapse;
vertical-align: middle;
}
tr,
th,
td {
padding: 5px;
}
caption {
background-color: $bg-light-gray;
overflow: hidden;
padding: 10px;
font-size: $font-big;
font-weight: bold;
margin-left: 0;
}
tr {
border: none;
}
th,
td {
border-width: 2px 0 0 2px;
}
th {
background-color: lighten($bg-light-gray, 5%);
font-size: $font-normal;
font-weight: bold;
padding: 7px;
&:first-child {
border-left: 0;
}
}
td {
&:first-child {
border-left: 0;
}
}
}
Loading

0 comments on commit 1691ceb

Please sign in to comment.