File: mixins.less

package info (click to toggle)
jupyter-notebook 4.2.3-4~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 7,804 kB
  • sloc: python: 8,698; makefile: 240; sh: 74
file content (19 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Mixin CSS classes

.border-box-sizing {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.corner-all {
    border-radius: @border-radius-base;
}

.border-radius(@radius) {
  border-radius: @radius;
}

.no-padding {
    padding: 0px;
}