Skip to content

Commit

Permalink
EDW changes
Browse files Browse the repository at this point in the history
  • Loading branch information
melish committed Sep 7, 2024
1 parent 8cece55 commit 506e5ae
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/.sass-cache
/node_modules
/src/sass/_custom-variables.scss
/.sublime-grunt.cache
/images/logo
/.stylelintcache
4 changes: 4 additions & 0 deletions src/sass/_custom-variables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
$brand-primary: #109e13; // EDW green
$header-bg: #109e13;
$brand-accent: #d3f8d2;
$font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
43 changes: 43 additions & 0 deletions src/sass/_custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#main > #content > .contextual {
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 5px;
}

#main > #content > .contextual > .drdn {
order: 99;
}

#main > #content > .contextual > a.icon.new-issue {
display: flex;
align-items: center;
justify-content: center;
order: 100;
overflow: hidden;
transition: all 200ms;
// background: #ff9900; // InforMEA
border: none;
border-radius: 4px;
background: green;
color: white;
font-size: 1.3rem;
&::hover {
// background: #cc7a00; // InforMEA
background: #109e13;
box-shadow: 1px 1px 3px #ddd;
}
&::before {
font-size: 1rem;
}
}


#principals_for_new_member {
#principals {
column-count: 6;
}
label {
display: block;
}
}
3 changes: 3 additions & 0 deletions src/sass/application.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "custom-variables";
@import "variables";
@import "functions";
@import "mixins";
Expand Down Expand Up @@ -51,3 +52,5 @@
//

@import "javascripts/sidebar-toggler";

@import "custom.scss";
2 changes: 1 addition & 1 deletion stylesheets/application.css

Large diffs are not rendered by default.

0 comments on commit 506e5ae

Please sign in to comment.