Skip to content
This repository has been archived by the owner on Oct 11, 2019. It is now read-only.

Commit

Permalink
by iamdroid: Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
i-amdroid committed Aug 15, 2017
1 parent d11c817 commit 6b5d8ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions css/theme-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,14 @@
color: rgba(0, 0, 0, 0.26); }
.theme-dark .block-search.search-persistent form .form-item.focused input[type="text"]::-webkit-input-placeholder {
color: rgba(0, 0, 0, 0.26); }
.theme-dark .tabs ul, .theme-dark ul.tabs li a {
.theme-dark .tabs ul li a, .theme-dark ul.tabs li a {
color: rgba(255, 255, 255, 0.7); }
.theme-dark .tabs ul:hover, .theme-dark ul.tabs li a:hover {
.theme-dark .tabs ul li a:hover, .theme-dark ul.tabs li a:hover {
border-color: rgba(120, 144, 156, 0.5); }
.theme-dark .tabs ul.is-active, .theme-dark ul.tabs li a.is-active {
.theme-dark .tabs ul li a.is-active, .theme-dark ul.tabs li a.is-active {
border-color: #78909c;
color: #78909c; }
.theme-dark .tabs ul.is-active:hover, .theme-dark ul.tabs li a.is-active:hover {
.theme-dark .tabs ul li a.is-active:hover, .theme-dark ul.tabs li a.is-active:hover {
border-color: #78909c; }
.theme-dark .card {
background: #424242; }
Expand Down
2 changes: 1 addition & 1 deletion material_base.theme
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function material_base_preprocess_html(&$variables) {
/**
* Implements hook_form_alter().
*/
function material_base_form_alter(array &$form, FormStateInterface $form_state, $form_id) {
function material_base_form_alter(&$form, FormStateInterface $form_state, $form_id) {
switch ($form_id) {
case 'user_login_form':
$form['#attributes']['class'][] = 'card card-form';
Expand Down
2 changes: 1 addition & 1 deletion sass/theme-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
}
}

.tabs ul, ul.tabs li a { color: $color-text-light-secondary;
.tabs ul li a, ul.tabs li a { color: $color-text-light-secondary;
&:hover { border-color: rgba($color-primary-light, .5); }
&.is-active { border-color: $color-primary-light; color: $color-primary-light;
&:hover { border-color: $color-primary-light; }
Expand Down

0 comments on commit 6b5d8ec

Please sign in to comment.