File: task_list.scss

package info (click to toggle)
ruby-task-list 2.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 256 kB
  • sloc: ruby: 308; javascript: 58; sh: 14; makefile: 8
file content (20 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Requires use of `.markdown-body` to override default markdown list styles
.markdown-body .task-list {
  list-style-type: none;
  padding-left: 10px;
}

.task-list-item {
  padding-left: 20px;
}
.task-list-item label {
  font-weight: normal;
}
.task-list-item + .task-list-item {
  margin-top: 3px;
}
.task-list-item-checkbox {
  float: left;
  margin-left: -20px;
  margin-top: 4px;
}