Doc: Modify unreadable tables
Added breaks in List of Stylable Widgets table. Changed List of Properties table into sections. Added list of Qt-specific properties in beg of List of Properties chapter. Moved snippet comments to different rows. Task-number: QTBUG-118446 Pick-to: 6.6 Change-Id: I494401058c7982c0a0ada18c8c94429beabba348 Reviewed-by: Mats Honkamaa <mats.honkamaa@qt.io>
This commit is contained in:
parent
bacee888ac
commit
c39844c78e
@ -450,32 +450,48 @@ QDialog { etch-disabled-text: 1 }
|
||||
|
||||
|
||||
//! [82]
|
||||
QLabel { border-color: red } /* red red red red */
|
||||
QLabel { border-color: red blue } /* red blue red blue */
|
||||
QLabel { border-color: red blue green } /* red blue green blue */
|
||||
QLabel { border-color: red blue green yellow }
|
||||
/* red red red red */
|
||||
QLabel { border-color: red }
|
||||
/* red blue red blue */
|
||||
QLabel { border-color: red blue }
|
||||
/* red blue green blue */
|
||||
QLabel { border-color: red blue green }
|
||||
/* red blue green yellow */
|
||||
QLabel { border-color: red blue green yellow }
|
||||
//! [82]
|
||||
|
||||
|
||||
//! [83]
|
||||
QLabel { border-width: 1px } /* 1px 1px 1px 1px */
|
||||
QLabel { border-width: 1px 2px } /* 1px 2px 1px 2px */
|
||||
QLabel { border-width: 1px 2px 3px } /* 1px 2px 3px 2px */
|
||||
QLabel { border-width: 1px 2px 3px 4px } /* 1px 2px 3px 4px */
|
||||
/* 1px 1px 1px 1px */
|
||||
QLabel { border-width: 1px }
|
||||
/* 1px 2px 1px 2px */
|
||||
QLabel { border-width: 1px 2px }
|
||||
/* 1px 2px 3px 2px */
|
||||
QLabel { border-width: 1px 2px 3px }
|
||||
/* 1px 2px 3px 4px */
|
||||
QLabel { border-width: 1px 2px 3px 4px }
|
||||
//! [83]
|
||||
|
||||
|
||||
//! [84]
|
||||
QLabel { border-color: red } /* opaque red */
|
||||
QLabel { border-color: #FF0000 } /* opaque red */
|
||||
QLabel { border-color: rgba(255, 0, 0, 75%) } /* 75% opaque red */
|
||||
QLabel { border-color: rgb(255, 0, 0) } /* opaque red */
|
||||
QLabel { border-color: rgb(100%, 0%, 0%) } /* opaque red */
|
||||
QLabel { border-color: hsv(60, 100%, 100%) } /* opaque yellow */
|
||||
QLabel { border-color: hsva(240, 255, 255, 75%) } /* 75% blue */
|
||||
QLabel { border-color: hsl(60, 100%, 50%) } /* opaque yellow */
|
||||
QLabel { border-color: hsla(240, 255, 50%, 75%) } /* 75% blue */
|
||||
/* opaque red */
|
||||
QLabel { border-color: red }
|
||||
/* opaque red */
|
||||
QLabel { border-color: #FF0000 }
|
||||
/* 75% opaque red */
|
||||
QLabel { border-color: rgba(255, 0, 0, 75%) }
|
||||
/* opaque red */
|
||||
QLabel { border-color: rgb(255, 0, 0) }
|
||||
/* opaque red */
|
||||
QLabel { border-color: rgb(100%, 0%, 0%) }
|
||||
/* opaque yellow */
|
||||
QLabel { border-color: hsv(60, 100%, 100%) }
|
||||
/* 75% blue */
|
||||
QLabel { border-color: hsva(240, 255, 255, 75%) }
|
||||
/* opaque yellow */
|
||||
QLabel { border-color: hsl(60, 100%, 50%) }
|
||||
/* 75% blue */
|
||||
QLabel { border-color: hsla(240, 255, 50%, 75%) }
|
||||
//! [84]
|
||||
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user