20 lines
213 B
CSS
20 lines
213 B
CSS
|
|
/* FORCE EVERYTHING SQUARE - GTK3 */
|
||
|
|
* {
|
||
|
|
border-radius: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.window-frame,
|
||
|
|
decoration,
|
||
|
|
.window,
|
||
|
|
.background,
|
||
|
|
.titlebar,
|
||
|
|
headerbar,
|
||
|
|
dialog,
|
||
|
|
popover,
|
||
|
|
menu,
|
||
|
|
tooltip,
|
||
|
|
button,
|
||
|
|
entry {
|
||
|
|
border-radius: 0px;
|
||
|
|
}
|