-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #383 from civicrm/v0.1-alpha31-rc
Merge v0.1-alpha31 to master
- Loading branch information
Showing
25 changed files
with
180 additions
and
188 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
/* stylelint-disable max-nesting-depth, selector-max-compound-selectors, selector-no-qualifying-type, selector-max-id, scss/at-extend-no-missing-placeholder */ | ||
|
||
@import 'drupal'; | ||
@import 'wordpress'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* stylelint-disable selector-max-id */ | ||
|
||
@import 'base/scss/vendor/bootstrap/alerts'; | ||
|
||
.page-civicrm { | ||
%title { | ||
font-weight: 600 !important; | ||
} | ||
|
||
h2 { | ||
@extend %title; | ||
} | ||
|
||
#branding { | ||
background: $crm-page-topbar-bg !important; | ||
color: $crm-white !important; | ||
font-family: $font-family-base; | ||
line-height: 20px; | ||
overflow: visible !important; | ||
padding: $crm-standard-gap 0 0; | ||
|
||
h1.page-title { /* stylelint-disable-line selector-no-qualifying-type */ | ||
@extend %title; | ||
|
||
background: $crm-white; | ||
box-sizing: border-box; | ||
color: $gray-darker; | ||
display: block; | ||
line-height: 50px !important; | ||
margin: -#{$crm-standard-gap} 0 $crm-standard-gap; | ||
padding: 0 ($crm-standard-gap * 2); | ||
position: relative; | ||
top: 25px; | ||
width: 100%; | ||
z-index: 1; | ||
} | ||
|
||
.add-shortcut { | ||
display: none; | ||
} | ||
|
||
.breadcrumb { | ||
color: transparent; | ||
float: left; | ||
left: 10px; | ||
padding: 0 ($crm-standard-gap * 2); | ||
position: relative; | ||
top: -5px; | ||
|
||
/* stylelint-disable selector-max-compound-selectors, max-nesting-depth */ | ||
> a { | ||
color: $crm-white; | ||
font-size: 0.8rem; | ||
left: -10px; | ||
padding: 0; | ||
position: relative; | ||
|
||
&:not(:last-of-type)::after { | ||
content: '>'; | ||
display: inline-block; | ||
font-size: 0.6em; | ||
position: absolute; | ||
right: -10px; | ||
} | ||
} | ||
/* stylelint-enable selector-max-compound-selectors, max-nesting-depth */ | ||
} | ||
} | ||
|
||
#console { | ||
@extend .alert, .alert-warning; /* stylelint-disable-line scss/at-extend-no-missing-placeholder */ | ||
|
||
margin-top: 0 !important; | ||
} | ||
|
||
// The "printer" icon button | ||
#printer-friendly { | ||
position: absolute !important; | ||
right: 0 !important; | ||
top: -50px !important; | ||
z-index: 2; | ||
|
||
a { | ||
color: $crm-white; | ||
} | ||
} | ||
|
||
#toolbar { | ||
box-shadow: none !important; | ||
} | ||
} | ||
|
||
#{$outside-namespace-marker} { | ||
html { | ||
// Ensures that there is the same amount of vertical room for the main menu | ||
// regardless of whether there is a drupal menu module enabled or not | ||
body { | ||
&:not(.toolbar) { | ||
margin-top: $crm-main-menu-height !important; | ||
} | ||
|
||
.toolbar-menu { /* stylelint-disable-line selector-max-compound-selectors */ | ||
height: $crm-main-menu-height !important; | ||
padding-bottom: 0 !important; | ||
padding-top: 0 !important; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.