-
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.
- Loading branch information
1 parent
1da145b
commit 4ea2d50
Showing
51 changed files
with
15,443 additions
and
192 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* Adjust margins outwards, so column contents line up with the edges of the | ||
parent of container-fluid. */ | ||
.container-fluid.crosstalk-bscols { | ||
margin-left: -30px; | ||
margin-right: -30px; | ||
white-space: normal; | ||
} | ||
|
||
/* But don't adjust the margins outwards if we're directly under the body, | ||
i.e. we were the top-level of something at the console. */ | ||
body > .container-fluid.crosstalk-bscols { | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { | ||
display: inline-block; | ||
padding-right: 12px; | ||
vertical-align: top; | ||
} | ||
|
||
@media only screen and (max-width:480px) { | ||
.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { | ||
display: block; | ||
padding-right: inherit; | ||
} | ||
} |
Oops, something went wrong.