forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SAK-31076 Mobile - Table is not fully responsive (sakaiproject#2922)
This also solves SAK-31077 Mobile - subpages - "viewing x - y of z" dropdown appears in table, extra column SAK-31080 Mobile - Preferences not responsive
- Loading branch information
1 parent
1559442
commit d8ef8f9
Showing
5 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
reference/library/src/morpheus-master/sass/modules/tool/sitestats/_sitestats.scss
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,20 @@ | ||
.#{$namespace}sakai-sitestats{ | ||
.widget .ministatContainer { | ||
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ | ||
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */ | ||
display: -ms-flexbox; /* TWEENER - IE 10 */ | ||
display: -webkit-flex; /* NEW - Chrome */ | ||
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ | ||
flex-direction: row; | ||
|
||
@media #{$phone}{ | ||
flex-direction: column; | ||
} | ||
} | ||
#prefsForm .halfSize{ | ||
@media #{$phone}{ | ||
display: block; | ||
width:100%; | ||
} | ||
} | ||
} |
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