summaryrefslogtreecommitdiff
path: root/testsuite/css/change/test6.css
blob: 9b49086829a40089864d1f2b524da82020f4aaa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* a simplified version of some of the things we do for linked buttons and entries */

box:not(.vertical).linked > button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

box:not(.vertical).linked > button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

box:not(.vetical).linked > *:disabled ~ entry:disabled {
  border-left-color: red;
}

box:not(.vetical).linked > entry:focus + button {
  border-left-color: blue;
}