Skip to content

Commit ca57314

Browse files
committed
Fix docs for beta and 1.17
1 parent 80c718a commit ca57314

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

index.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
@import "styles/badges";
66
@import "styles/buttons";
7+
@import "styles/docks";
78
@import "styles/editor";
89
@import "styles/git";
910
@import "styles/lists";

styles/docks.less

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
.atom-dock-inner.atom-dock-open {
2+
&.left {
3+
border-right: 1px solid @tree-view-border-color;
4+
}
5+
6+
&.right {
7+
border-left: 1px solid @tree-view-border-color;
8+
}
9+
}
10+
11+
.atom-dock-toggle-button {
12+
width: 200px;
13+
height: 200px;
14+
15+
&.left,
16+
&.right {
17+
width: 50px;
18+
}
19+
20+
.atom-dock-toggle-button-inner {
21+
width: 200px;
22+
height: 200px;
23+
border-radius: 100%;
24+
border: 0;
25+
background: rgba(0,0,0,0.4);
26+
27+
28+
&.left {
29+
.icon {
30+
font-size: 64px;
31+
transform: translateX(71px) translateY(-10px);
32+
33+
&:before {
34+
font-size: 32px;
35+
}
36+
}
37+
}
38+
39+
&.right {
40+
.icon {
41+
font-size: 64px;
42+
transform: translateX(-71px) translateY(-10px);
43+
44+
&:before {
45+
font-size: 32px;
46+
}
47+
}
48+
}
49+
}
50+
}
51+
52+
.atom-dock-resize-handle {
53+
position: absolute;
54+
top: 0;
55+
bottom: 0;
56+
z-index: 100;
57+
58+
&.left {
59+
right: -3px;
60+
width: 8px;
61+
}
62+
63+
&.right {
64+
left: -3px;
65+
width: 8px;
66+
}
67+
}

0 commit comments

Comments
 (0)