Skip to content
This repository has been archived by the owner on Feb 8, 2021. It is now read-only.

Commit

Permalink
fix for firefox bug with list columns (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedaul authored Aug 21, 2019
1 parent e880495 commit 86cbd11
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ On `vagrant@drupalvm`
$ sudo apt-get update
$ sudo apt-get install -y g++
$ sudo curl -sL https://deb.nodesource.com/setup_0.12 | sudo sh
$ sudo apt-get install -y nodejs
$ sudo apt-get install -y nodejs (note: for ubuntu 16.04 may need to run: sudo apt-get install nodejs-legacy instead)
```
Running Node.js & NPM in a Vagrant environment presents a few additional challenges [documented here](http://jmfeurprier.com/2015/10/02/how-to-install-node-js-with-ubuntu-and-vagrant-in-a-synced-folder/), so these instructions vary from those provided in the [Radix theme setup instructions](http://docs.radixtheme.org/en/latest/drupal/).

Expand Down
5 changes: 3 additions & 2 deletions assets/css/dulcet.style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12148,8 +12148,9 @@ ul:not([class]):not([id]), ul.bullet-green, ul.bullet-gray, ul.bullet-blue, ul.l
color: #888;
font-size: 0.42em;
vertical-align: middle;
float: left;
margin-top: 1em; }
/*float: left;*/
margin-top: 1em;
position: absolute; }

#mast ul:not([class]):not([id]) li, .item-list ul:not([class]):not([id]) li, .search-resources-wrapper ul:not([class]):not([id]) li {
padding-left: 0;
Expand Down
3 changes: 2 additions & 1 deletion scss/components/_lists.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ ul:not([class]):not([id]), ul.bullet-green, ul.bullet-gray, ul.bullet-blue, ul.l
color: #888;
font-size: 0.42em;
vertical-align: middle;
float: left;
/*float: left;*/
margin-top: 1em;
position: absolute;
}
}

Expand Down

0 comments on commit 86cbd11

Please sign in to comment.