Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-12-05 18:59:30 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-12-05 21:22:11 +0300
commita219158e77b70bdae43b707dedc7b2bc4f930280 (patch)
tree5ce086a9560aa1acb2d5e73d2d61ca47e8506864 /app/assets/stylesheets/framework/tables.scss
parentc73a5d596f8b239a8f43d9825d893b96a2f7457a (diff)
Remove admin.scss
Diffstat (limited to 'app/assets/stylesheets/framework/tables.scss')
-rw-r--r--app/assets/stylesheets/framework/tables.scss17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/tables.scss b/app/assets/stylesheets/framework/tables.scss
index a5f36c177fc..5d0ca63ea08 100644
--- a/app/assets/stylesheets/framework/tables.scss
+++ b/app/assets/stylesheets/framework/tables.scss
@@ -34,6 +34,10 @@ table {
background-color: $background-color;
font-weight: normal;
border-bottom: none;
+
+ &.wide {
+ width: 55%;
+ }
}
td {
@@ -42,3 +46,16 @@ table {
}
}
}
+
+.responsive-table {
+ @media (max-width: $screen-sm-max) {
+ th {
+ width: 100%;
+ }
+
+ td {
+ width: 100%;
+ float: left;
+ }
+ }
+}