1 @mixin hide-line-numbers {
3 margin-left: -$W_NONUMBERS_TINY;
5 width: $W_NONUMBERS_TINY;
15 background-color: #CCC;
22 width: $W_NONUMBERS_TINY / 2 - 1px;
25 border-right: 1px solid #ccc;
28 @include min-screen($S_NONUMBERS_TINY_MAX) {
30 margin-left: -$W_NONUMBERS;
33 width: $W_NONUMBERS / 2 - 1;
40 @include hide-line-numbers;
42 @include min-screen($S_NUMBERS) {
43 /* Show line numbers. */
45 margin-left: -$W_NUMBERS;
46 width: $W_NUMBERS - 4px;
58 @include min-screen($S_NUMBERS) {
59 .always-hide-line-numbers {
60 /* Cancel showing line numbers. */
62 @include hide-line-numbers;