mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Update releasenotes
This commit is contained in:
parent
fc0ea0b22e
commit
0b1cef778a
2 changed files with 24 additions and 0 deletions
BIN
releasenotes/1.6.0/icons2.png
Normal file
BIN
releasenotes/1.6.0/icons2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
|
@ -60,6 +60,16 @@ element {
|
||||||
|
|
||||||
This will make the box `element` put `element-icon` and `element-text` in a vertical list.
|
This will make the box `element` put `element-icon` and `element-text` in a vertical list.
|
||||||
|
|
||||||
|
or change the ordering to show icon on the right:
|
||||||
|
|
||||||
|
```css
|
||||||
|
element {
|
||||||
|
children: [element-text, element-icon];
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
![Icons vertical](./icons2.png)
|
||||||
|
|
||||||
|
|
||||||
### Calculation support in theme format.
|
### Calculation support in theme format.
|
||||||
|
|
||||||
|
@ -80,6 +90,20 @@ It supports: `-`, `+`, `/`, `*` and `%` operators and they should be surrounded
|
||||||
This is a very initial implementation of CSS like `@media` support. This allows you to modify the theme
|
This is a very initial implementation of CSS like `@media` support. This allows you to modify the theme
|
||||||
based on screen size or ratio.
|
based on screen size or ratio.
|
||||||
|
|
||||||
|
We currently support: minimum width, minimum height, maximum width, maximum
|
||||||
|
height, monitor id, minimum acpect ratio or maximum acpect ratio.
|
||||||
|
|
||||||
|
|
||||||
|
For example, go to fullscreen mode on screens smaller then full HD:
|
||||||
|
|
||||||
|
```
|
||||||
|
@media (max-width: 1920px ) {
|
||||||
|
window {
|
||||||
|
fullscreen: true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Log
|
## Log
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue