@patternfly/patternfly 5.0.0-alpha.42 → 5.0.0-alpha.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Page/page.css +3 -6
- package/components/Page/page.scss +3 -8
- package/docs/components/Page/examples/Page.md +1 -2
- package/docs/demos/Page/examples/Page.md +0 -919
- package/package.json +5 -5
- package/patternfly-no-globals.css +3 -6
- package/patternfly.css +3 -6
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -913,921 +913,6 @@ wrapperTag: div
|
|
|
913
913
|
|
|
914
914
|
```
|
|
915
915
|
|
|
916
|
-
### Full height page
|
|
917
|
-
|
|
918
|
-
Using the `.pf-m-full-height` modifier class on the page component eliminates the need to ensure that the `<html>` and `<body>` tags, and any other ancestors of `.pf-c-page`, have height set to 100%.
|
|
919
|
-
|
|
920
|
-
```html isFullscreen
|
|
921
|
-
<div class="pf-c-page pf-m-full-height" id="page-demo-full-height">
|
|
922
|
-
<div class="pf-c-skip-to-content">
|
|
923
|
-
<a
|
|
924
|
-
class="pf-c-button pf-m-primary"
|
|
925
|
-
href="#main-content-page-demo-full-height"
|
|
926
|
-
>Skip to content</a>
|
|
927
|
-
</div>
|
|
928
|
-
<header class="pf-c-masthead" id="page-demo-full-height-masthead">
|
|
929
|
-
<span class="pf-c-masthead__toggle">
|
|
930
|
-
<button
|
|
931
|
-
class="pf-c-button pf-m-plain"
|
|
932
|
-
type="button"
|
|
933
|
-
aria-label="Global navigation"
|
|
934
|
-
>
|
|
935
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
936
|
-
</button>
|
|
937
|
-
</span>
|
|
938
|
-
<div class="pf-c-masthead__main">
|
|
939
|
-
<a class="pf-c-masthead__brand" href="#">
|
|
940
|
-
<picture
|
|
941
|
-
class="pf-c-brand pf-m-picture"
|
|
942
|
-
style="--pf-c-brand--Width: 180px; --pf-c-brand--Width-on-md: 180px; --pf-c-brand--Width-on-2xl: 220px;"
|
|
943
|
-
>
|
|
944
|
-
<source
|
|
945
|
-
media="(min-width: 768px)"
|
|
946
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
947
|
-
/>
|
|
948
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
949
|
-
<img
|
|
950
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
951
|
-
alt="Fallback patternFly default logo"
|
|
952
|
-
/>
|
|
953
|
-
</picture>
|
|
954
|
-
</a>
|
|
955
|
-
</div>
|
|
956
|
-
<div class="pf-c-masthead__content">
|
|
957
|
-
<div
|
|
958
|
-
class="pf-c-toolbar pf-m-full-height pf-m-static"
|
|
959
|
-
id="page-demo-full-height-masthead-toolbar"
|
|
960
|
-
>
|
|
961
|
-
<div class="pf-c-toolbar__content">
|
|
962
|
-
<div class="pf-c-toolbar__content-section">
|
|
963
|
-
<div
|
|
964
|
-
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
965
|
-
>
|
|
966
|
-
<div
|
|
967
|
-
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
968
|
-
>
|
|
969
|
-
<div class="pf-c-toolbar__item">
|
|
970
|
-
<nav
|
|
971
|
-
class="pf-c-app-launcher"
|
|
972
|
-
aria-label="Application launcher"
|
|
973
|
-
id="page-demo-full-height-masthead-application-launcher"
|
|
974
|
-
>
|
|
975
|
-
<button
|
|
976
|
-
class="pf-c-app-launcher__toggle"
|
|
977
|
-
type="button"
|
|
978
|
-
id="page-demo-full-height-masthead-application-launcher-button"
|
|
979
|
-
aria-expanded="false"
|
|
980
|
-
aria-label="Application launcher"
|
|
981
|
-
>
|
|
982
|
-
<i class="fas fa-th" aria-hidden="true"></i>
|
|
983
|
-
</button>
|
|
984
|
-
<div
|
|
985
|
-
class="pf-c-app-launcher__menu pf-m-align-right"
|
|
986
|
-
hidden
|
|
987
|
-
>
|
|
988
|
-
<div class="pf-c-app-launcher__menu-search">
|
|
989
|
-
<div class="pf-c-search-input">
|
|
990
|
-
<div class="pf-c-search-input__bar">
|
|
991
|
-
<span class="pf-c-search-input__text">
|
|
992
|
-
<span class="pf-c-search-input__icon">
|
|
993
|
-
<i
|
|
994
|
-
class="fas fa-search fa-fw"
|
|
995
|
-
aria-hidden="true"
|
|
996
|
-
></i>
|
|
997
|
-
</span>
|
|
998
|
-
<input
|
|
999
|
-
class="pf-c-search-input__text-input"
|
|
1000
|
-
type="text"
|
|
1001
|
-
placeholder="Filter by name"
|
|
1002
|
-
aria-label="Filter by name"
|
|
1003
|
-
/>
|
|
1004
|
-
</span>
|
|
1005
|
-
</div>
|
|
1006
|
-
</div>
|
|
1007
|
-
</div>
|
|
1008
|
-
<section class="pf-c-app-launcher__group">
|
|
1009
|
-
<h1 class="pf-c-app-launcher__group-title">Favorites</h1>
|
|
1010
|
-
<ul role="list">
|
|
1011
|
-
<li
|
|
1012
|
-
class="pf-c-app-launcher__menu-wrapper pf-m-external pf-m-favorite"
|
|
1013
|
-
>
|
|
1014
|
-
<a class="pf-c-app-launcher__menu-item">
|
|
1015
|
-
Link 1
|
|
1016
|
-
<span
|
|
1017
|
-
class="pf-c-app-launcher__menu-item-external-icon"
|
|
1018
|
-
>
|
|
1019
|
-
<i
|
|
1020
|
-
class="fas fa-external-link-alt"
|
|
1021
|
-
aria-hidden="true"
|
|
1022
|
-
></i>
|
|
1023
|
-
</span>
|
|
1024
|
-
<span class="pf-screen-reader">(opens new window)</span>
|
|
1025
|
-
</a>
|
|
1026
|
-
<button
|
|
1027
|
-
class="pf-c-app-launcher__menu-item pf-m-action"
|
|
1028
|
-
type="button"
|
|
1029
|
-
aria-label="Favorite"
|
|
1030
|
-
>
|
|
1031
|
-
<i class="fas fa-star" aria-hidden="true"></i>
|
|
1032
|
-
</button>
|
|
1033
|
-
</li>
|
|
1034
|
-
<li
|
|
1035
|
-
class="pf-c-app-launcher__menu-wrapper pf-m-external"
|
|
1036
|
-
>
|
|
1037
|
-
<a class="pf-c-app-launcher__menu-item">
|
|
1038
|
-
Link 2
|
|
1039
|
-
<span
|
|
1040
|
-
class="pf-c-app-launcher__menu-item-external-icon"
|
|
1041
|
-
>
|
|
1042
|
-
<i
|
|
1043
|
-
class="fas fa-external-link-alt"
|
|
1044
|
-
aria-hidden="true"
|
|
1045
|
-
></i>
|
|
1046
|
-
</span>
|
|
1047
|
-
<span class="pf-screen-reader">(opens new window)</span>
|
|
1048
|
-
</a>
|
|
1049
|
-
<button
|
|
1050
|
-
class="pf-c-app-launcher__menu-item pf-m-action"
|
|
1051
|
-
type="button"
|
|
1052
|
-
aria-label="Favorite"
|
|
1053
|
-
>
|
|
1054
|
-
<i class="fas fa-star" aria-hidden="true"></i>
|
|
1055
|
-
</button>
|
|
1056
|
-
</li>
|
|
1057
|
-
</ul>
|
|
1058
|
-
</section>
|
|
1059
|
-
<hr class="pf-c-divider" />
|
|
1060
|
-
<section class="pf-c-app-launcher__group">
|
|
1061
|
-
<h1 class="pf-c-app-launcher__group-title">Group 1</h1>
|
|
1062
|
-
<ul role="list">
|
|
1063
|
-
<li
|
|
1064
|
-
class="pf-c-app-launcher__menu-wrapper pf-m-external"
|
|
1065
|
-
>
|
|
1066
|
-
<a class="pf-c-app-launcher__menu-item">
|
|
1067
|
-
Link 1
|
|
1068
|
-
<span
|
|
1069
|
-
class="pf-c-app-launcher__menu-item-external-icon"
|
|
1070
|
-
>
|
|
1071
|
-
<i
|
|
1072
|
-
class="fas fa-external-link-alt"
|
|
1073
|
-
aria-hidden="true"
|
|
1074
|
-
></i>
|
|
1075
|
-
</span>
|
|
1076
|
-
<span class="pf-screen-reader">(opens new window)</span>
|
|
1077
|
-
</a>
|
|
1078
|
-
<button
|
|
1079
|
-
class="pf-c-app-launcher__menu-item pf-m-action"
|
|
1080
|
-
type="button"
|
|
1081
|
-
aria-label="Favorite"
|
|
1082
|
-
>
|
|
1083
|
-
<i class="fas fa-star" aria-hidden="true"></i>
|
|
1084
|
-
</button>
|
|
1085
|
-
</li>
|
|
1086
|
-
<li
|
|
1087
|
-
class="pf-c-app-launcher__menu-wrapper pf-m-external pf-m-favorite"
|
|
1088
|
-
>
|
|
1089
|
-
<a class="pf-c-app-launcher__menu-item">
|
|
1090
|
-
Link 2
|
|
1091
|
-
<span
|
|
1092
|
-
class="pf-c-app-launcher__menu-item-external-icon"
|
|
1093
|
-
>
|
|
1094
|
-
<i
|
|
1095
|
-
class="fas fa-external-link-alt"
|
|
1096
|
-
aria-hidden="true"
|
|
1097
|
-
></i>
|
|
1098
|
-
</span>
|
|
1099
|
-
<span class="pf-screen-reader">(opens new window)</span>
|
|
1100
|
-
</a>
|
|
1101
|
-
<button
|
|
1102
|
-
class="pf-c-app-launcher__menu-item pf-m-action"
|
|
1103
|
-
type="button"
|
|
1104
|
-
aria-label="Favorite"
|
|
1105
|
-
>
|
|
1106
|
-
<i class="fas fa-star" aria-hidden="true"></i>
|
|
1107
|
-
</button>
|
|
1108
|
-
</li>
|
|
1109
|
-
</ul>
|
|
1110
|
-
</section>
|
|
1111
|
-
</div>
|
|
1112
|
-
</nav>
|
|
1113
|
-
</div>
|
|
1114
|
-
<div class="pf-c-toolbar__item">
|
|
1115
|
-
<div class="pf-c-dropdown">
|
|
1116
|
-
<button
|
|
1117
|
-
class="pf-c-dropdown__toggle pf-m-plain"
|
|
1118
|
-
id="page-demo-full-height-masthead-settings-button"
|
|
1119
|
-
aria-expanded="false"
|
|
1120
|
-
type="button"
|
|
1121
|
-
aria-label="Settings"
|
|
1122
|
-
>
|
|
1123
|
-
<i class="fas fa-cog" aria-hidden="true"></i>
|
|
1124
|
-
</button>
|
|
1125
|
-
<ul
|
|
1126
|
-
class="pf-c-dropdown__menu pf-m-align-right"
|
|
1127
|
-
aria-labelledby="page-demo-full-height-masthead-settings-button"
|
|
1128
|
-
hidden
|
|
1129
|
-
>
|
|
1130
|
-
<li>
|
|
1131
|
-
<button
|
|
1132
|
-
class="pf-c-dropdown__menu-item"
|
|
1133
|
-
type="button"
|
|
1134
|
-
>Settings</button>
|
|
1135
|
-
</li>
|
|
1136
|
-
<li>
|
|
1137
|
-
<button
|
|
1138
|
-
class="pf-c-dropdown__menu-item"
|
|
1139
|
-
type="button"
|
|
1140
|
-
>Use the beta release</button>
|
|
1141
|
-
</li>
|
|
1142
|
-
</ul>
|
|
1143
|
-
</div>
|
|
1144
|
-
</div>
|
|
1145
|
-
<div class="pf-c-toolbar__item">
|
|
1146
|
-
<div class="pf-c-dropdown">
|
|
1147
|
-
<button
|
|
1148
|
-
class="pf-c-dropdown__toggle pf-m-plain"
|
|
1149
|
-
id="page-demo-full-height-masthead-help-button"
|
|
1150
|
-
aria-expanded="false"
|
|
1151
|
-
type="button"
|
|
1152
|
-
aria-label="Help"
|
|
1153
|
-
>
|
|
1154
|
-
<i class="fas fa-question-circle" aria-hidden="true"></i>
|
|
1155
|
-
</button>
|
|
1156
|
-
<ul
|
|
1157
|
-
class="pf-c-dropdown__menu pf-m-align-right"
|
|
1158
|
-
aria-labelledby="page-demo-full-height-masthead-help-button"
|
|
1159
|
-
hidden
|
|
1160
|
-
>
|
|
1161
|
-
<li>
|
|
1162
|
-
<button
|
|
1163
|
-
class="pf-c-dropdown__menu-item"
|
|
1164
|
-
type="button"
|
|
1165
|
-
>Support options</button>
|
|
1166
|
-
</li>
|
|
1167
|
-
<li>
|
|
1168
|
-
<button
|
|
1169
|
-
class="pf-c-dropdown__menu-item"
|
|
1170
|
-
type="button"
|
|
1171
|
-
>Open support case</button>
|
|
1172
|
-
</li>
|
|
1173
|
-
<li>
|
|
1174
|
-
<button
|
|
1175
|
-
class="pf-c-dropdown__menu-item"
|
|
1176
|
-
type="button"
|
|
1177
|
-
>API documentation</button>
|
|
1178
|
-
</li>
|
|
1179
|
-
</ul>
|
|
1180
|
-
</div>
|
|
1181
|
-
</div>
|
|
1182
|
-
</div>
|
|
1183
|
-
<div class="pf-c-toolbar__item pf-m-hidden-on-lg">
|
|
1184
|
-
<div class="pf-c-dropdown">
|
|
1185
|
-
<button
|
|
1186
|
-
class="pf-c-menu-toggle pf-m-plain"
|
|
1187
|
-
type="button"
|
|
1188
|
-
aria-expanded="false"
|
|
1189
|
-
aria-label="Actions"
|
|
1190
|
-
>
|
|
1191
|
-
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
1192
|
-
</button>
|
|
1193
|
-
<div class="pf-c-menu pf-m-drilldown pf-m-align-right" hidden>
|
|
1194
|
-
<div class="pf-c-menu__content">
|
|
1195
|
-
<section class="pf-c-menu__group pf-m-hidden-on-sm">
|
|
1196
|
-
<ul class="pf-c-menu__list" role="menu">
|
|
1197
|
-
<li
|
|
1198
|
-
class="pf-c-menu__list-item pf-m-disabled"
|
|
1199
|
-
role="none"
|
|
1200
|
-
>
|
|
1201
|
-
<button
|
|
1202
|
-
class="pf-c-menu__item"
|
|
1203
|
-
type="button"
|
|
1204
|
-
disabled
|
|
1205
|
-
role="menuitem"
|
|
1206
|
-
>
|
|
1207
|
-
<span class="pf-c-menu__item-description">
|
|
1208
|
-
<div class="pf-u-font-size-sm">Username:</div>
|
|
1209
|
-
<div class="pf-u-font-size-md">ned_username</div>
|
|
1210
|
-
</span>
|
|
1211
|
-
</button>
|
|
1212
|
-
</li>
|
|
1213
|
-
<li
|
|
1214
|
-
class="pf-c-menu__list-item pf-m-disabled"
|
|
1215
|
-
role="none"
|
|
1216
|
-
>
|
|
1217
|
-
<button
|
|
1218
|
-
class="pf-c-menu__item"
|
|
1219
|
-
type="button"
|
|
1220
|
-
disabled
|
|
1221
|
-
role="menuitem"
|
|
1222
|
-
>
|
|
1223
|
-
<span class="pf-c-menu__item-description">
|
|
1224
|
-
<div class="pf-u-font-size-sm">Account number:</div>
|
|
1225
|
-
<div class="pf-u-font-size-md">123456789</div>
|
|
1226
|
-
</span>
|
|
1227
|
-
</button>
|
|
1228
|
-
</li>
|
|
1229
|
-
<li class="pf-c-divider" role="separator"></li>
|
|
1230
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1231
|
-
<button
|
|
1232
|
-
class="pf-c-menu__item"
|
|
1233
|
-
type="button"
|
|
1234
|
-
role="menuitem"
|
|
1235
|
-
>
|
|
1236
|
-
<span class="pf-c-menu__item-main">
|
|
1237
|
-
<span class="pf-c-menu__item-text">My profile</span>
|
|
1238
|
-
</span>
|
|
1239
|
-
</button>
|
|
1240
|
-
</li>
|
|
1241
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1242
|
-
<button
|
|
1243
|
-
class="pf-c-menu__item"
|
|
1244
|
-
type="button"
|
|
1245
|
-
role="menuitem"
|
|
1246
|
-
>
|
|
1247
|
-
<span class="pf-c-menu__item-main">
|
|
1248
|
-
<span
|
|
1249
|
-
class="pf-c-menu__item-text"
|
|
1250
|
-
>User management</span>
|
|
1251
|
-
</span>
|
|
1252
|
-
</button>
|
|
1253
|
-
</li>
|
|
1254
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1255
|
-
<button
|
|
1256
|
-
class="pf-c-menu__item"
|
|
1257
|
-
type="button"
|
|
1258
|
-
role="menuitem"
|
|
1259
|
-
>
|
|
1260
|
-
<span class="pf-c-menu__item-main">
|
|
1261
|
-
<span class="pf-c-menu__item-text">Logout</span>
|
|
1262
|
-
</span>
|
|
1263
|
-
</button>
|
|
1264
|
-
</li>
|
|
1265
|
-
</ul>
|
|
1266
|
-
</section>
|
|
1267
|
-
<hr class="pf-c-divider pf-m-hidden-on-sm" />
|
|
1268
|
-
<section class="pf-c-menu__group">
|
|
1269
|
-
<ul class="pf-c-menu__list" role="menu">
|
|
1270
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1271
|
-
<button
|
|
1272
|
-
class="pf-c-menu__item"
|
|
1273
|
-
type="button"
|
|
1274
|
-
role="menuitem"
|
|
1275
|
-
aria-expanded="false"
|
|
1276
|
-
>
|
|
1277
|
-
<span class="pf-c-menu__item-main">
|
|
1278
|
-
<span class="pf-c-menu__item-icon">
|
|
1279
|
-
<i
|
|
1280
|
-
class="fas fa-fw fa-cog"
|
|
1281
|
-
aria-hidden="true"
|
|
1282
|
-
></i>
|
|
1283
|
-
</span>
|
|
1284
|
-
<span class="pf-c-menu__item-text">Settings</span>
|
|
1285
|
-
<span class="pf-c-menu__item-toggle-icon">
|
|
1286
|
-
<i class="fas fa-angle-right"></i>
|
|
1287
|
-
</span>
|
|
1288
|
-
</span>
|
|
1289
|
-
</button>
|
|
1290
|
-
<div class="pf-c-menu" hidden>
|
|
1291
|
-
<div class="pf-c-menu__content">
|
|
1292
|
-
<ul class="pf-c-menu__list" role="menu">
|
|
1293
|
-
<li
|
|
1294
|
-
class="pf-c-menu__list-item pf-m-drill-up"
|
|
1295
|
-
role="none"
|
|
1296
|
-
>
|
|
1297
|
-
<button
|
|
1298
|
-
class="pf-c-menu__item"
|
|
1299
|
-
type="button"
|
|
1300
|
-
role="menuitem"
|
|
1301
|
-
>
|
|
1302
|
-
<span class="pf-c-menu__item-main">
|
|
1303
|
-
<span
|
|
1304
|
-
class="pf-c-menu__item-toggle-icon"
|
|
1305
|
-
>
|
|
1306
|
-
<i class="fas fa-angle-left"></i>
|
|
1307
|
-
</span>
|
|
1308
|
-
<span class="pf-c-menu__item-icon">
|
|
1309
|
-
<i
|
|
1310
|
-
class="fas fa-fw fa-cog"
|
|
1311
|
-
aria-hidden="true"
|
|
1312
|
-
></i>
|
|
1313
|
-
</span>
|
|
1314
|
-
<span
|
|
1315
|
-
class="pf-c-menu__item-text"
|
|
1316
|
-
>Settings</span>
|
|
1317
|
-
</span>
|
|
1318
|
-
</button>
|
|
1319
|
-
</li>
|
|
1320
|
-
<li class="pf-c-divider" role="separator"></li>
|
|
1321
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1322
|
-
<a
|
|
1323
|
-
class="pf-c-menu__item"
|
|
1324
|
-
href="#"
|
|
1325
|
-
role="menuitem"
|
|
1326
|
-
>
|
|
1327
|
-
<span class="pf-c-menu__item-main">
|
|
1328
|
-
<span
|
|
1329
|
-
class="pf-c-menu__item-text"
|
|
1330
|
-
>Customer support</span>
|
|
1331
|
-
</span>
|
|
1332
|
-
</a>
|
|
1333
|
-
</li>
|
|
1334
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1335
|
-
<a
|
|
1336
|
-
class="pf-c-menu__item"
|
|
1337
|
-
href="#"
|
|
1338
|
-
role="menuitem"
|
|
1339
|
-
>
|
|
1340
|
-
<span class="pf-c-menu__item-main">
|
|
1341
|
-
<span class="pf-c-menu__item-text">About</span>
|
|
1342
|
-
</span>
|
|
1343
|
-
</a>
|
|
1344
|
-
</li>
|
|
1345
|
-
</ul>
|
|
1346
|
-
</div>
|
|
1347
|
-
</div>
|
|
1348
|
-
</li>
|
|
1349
|
-
|
|
1350
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1351
|
-
<button
|
|
1352
|
-
class="pf-c-menu__item"
|
|
1353
|
-
type="button"
|
|
1354
|
-
role="menuitem"
|
|
1355
|
-
aria-expanded="false"
|
|
1356
|
-
>
|
|
1357
|
-
<span class="pf-c-menu__item-main">
|
|
1358
|
-
<span class="pf-c-menu__item-icon">
|
|
1359
|
-
<i
|
|
1360
|
-
class="fas fa-fw fa-pf-icon pf-icon-help"
|
|
1361
|
-
aria-hidden="true"
|
|
1362
|
-
></i>
|
|
1363
|
-
</span>
|
|
1364
|
-
<span class="pf-c-menu__item-text">Help</span>
|
|
1365
|
-
<span class="pf-c-menu__item-toggle-icon">
|
|
1366
|
-
<i class="fas fa-angle-right"></i>
|
|
1367
|
-
</span>
|
|
1368
|
-
</span>
|
|
1369
|
-
</button>
|
|
1370
|
-
<div class="pf-c-menu" hidden>
|
|
1371
|
-
<div class="pf-c-menu__content">
|
|
1372
|
-
<ul class="pf-c-menu__list" role="menu">
|
|
1373
|
-
<li
|
|
1374
|
-
class="pf-c-menu__list-item pf-m-drill-up"
|
|
1375
|
-
role="none"
|
|
1376
|
-
>
|
|
1377
|
-
<button
|
|
1378
|
-
class="pf-c-menu__item"
|
|
1379
|
-
type="button"
|
|
1380
|
-
role="menuitem"
|
|
1381
|
-
>
|
|
1382
|
-
<span class="pf-c-menu__item-main">
|
|
1383
|
-
<span
|
|
1384
|
-
class="pf-c-menu__item-toggle-icon"
|
|
1385
|
-
>
|
|
1386
|
-
<i class="fas fa-angle-left"></i>
|
|
1387
|
-
</span>
|
|
1388
|
-
<span class="pf-c-menu__item-icon">
|
|
1389
|
-
<i
|
|
1390
|
-
class="fas fa-fw fa-pf-icon pf-icon-help"
|
|
1391
|
-
aria-hidden="true"
|
|
1392
|
-
></i>
|
|
1393
|
-
</span>
|
|
1394
|
-
<span class="pf-c-menu__item-text">Help</span>
|
|
1395
|
-
</span>
|
|
1396
|
-
</button>
|
|
1397
|
-
</li>
|
|
1398
|
-
<li class="pf-c-divider" role="separator"></li>
|
|
1399
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1400
|
-
<a
|
|
1401
|
-
class="pf-c-menu__item"
|
|
1402
|
-
href="#"
|
|
1403
|
-
role="menuitem"
|
|
1404
|
-
>
|
|
1405
|
-
<span class="pf-c-menu__item-main">
|
|
1406
|
-
<span
|
|
1407
|
-
class="pf-c-menu__item-text"
|
|
1408
|
-
>Support options</span>
|
|
1409
|
-
</span>
|
|
1410
|
-
</a>
|
|
1411
|
-
</li>
|
|
1412
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1413
|
-
<a
|
|
1414
|
-
class="pf-c-menu__item"
|
|
1415
|
-
href="#"
|
|
1416
|
-
role="menuitem"
|
|
1417
|
-
>
|
|
1418
|
-
<span class="pf-c-menu__item-main">
|
|
1419
|
-
<span
|
|
1420
|
-
class="pf-c-menu__item-text"
|
|
1421
|
-
>Open support case</span>
|
|
1422
|
-
</span>
|
|
1423
|
-
</a>
|
|
1424
|
-
</li>
|
|
1425
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1426
|
-
<a
|
|
1427
|
-
class="pf-c-menu__item"
|
|
1428
|
-
href="#"
|
|
1429
|
-
role="menuitem"
|
|
1430
|
-
>
|
|
1431
|
-
<span class="pf-c-menu__item-main">
|
|
1432
|
-
<span
|
|
1433
|
-
class="pf-c-menu__item-text"
|
|
1434
|
-
>API documentation</span>
|
|
1435
|
-
</span>
|
|
1436
|
-
</a>
|
|
1437
|
-
</li>
|
|
1438
|
-
</ul>
|
|
1439
|
-
</div>
|
|
1440
|
-
</div>
|
|
1441
|
-
</li>
|
|
1442
|
-
|
|
1443
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1444
|
-
<button
|
|
1445
|
-
class="pf-c-menu__item"
|
|
1446
|
-
type="button"
|
|
1447
|
-
role="menuitem"
|
|
1448
|
-
>
|
|
1449
|
-
<span class="pf-c-menu__item-main">
|
|
1450
|
-
<span class="pf-c-menu__item-icon">
|
|
1451
|
-
<i class="fas fa-fw fa-th" aria-hidden="true"></i>
|
|
1452
|
-
</span>
|
|
1453
|
-
<span
|
|
1454
|
-
class="pf-c-menu__item-text"
|
|
1455
|
-
>Application launcher</span>
|
|
1456
|
-
<span class="pf-c-menu__item-toggle-icon">
|
|
1457
|
-
<i class="fas fa-angle-right"></i>
|
|
1458
|
-
</span>
|
|
1459
|
-
</span>
|
|
1460
|
-
</button>
|
|
1461
|
-
<div class="pf-c-menu" hidden>
|
|
1462
|
-
<div class="pf-c-menu__header">
|
|
1463
|
-
<button
|
|
1464
|
-
class="pf-c-menu__item"
|
|
1465
|
-
type="button"
|
|
1466
|
-
role="menuitem"
|
|
1467
|
-
>
|
|
1468
|
-
<span class="pf-c-menu__item-main">
|
|
1469
|
-
<span class="pf-c-menu__item-toggle-icon">
|
|
1470
|
-
<i class="fas fa-angle-left"></i>
|
|
1471
|
-
</span>
|
|
1472
|
-
<span class="pf-c-menu__item-icon">
|
|
1473
|
-
<i
|
|
1474
|
-
class="fas fa-fw fa-th"
|
|
1475
|
-
aria-hidden="true"
|
|
1476
|
-
></i>
|
|
1477
|
-
</span>
|
|
1478
|
-
<span
|
|
1479
|
-
class="pf-c-menu__item-text"
|
|
1480
|
-
>Application launcher</span>
|
|
1481
|
-
</span>
|
|
1482
|
-
</button>
|
|
1483
|
-
</div>
|
|
1484
|
-
<div class="pf-c-menu__search">
|
|
1485
|
-
<div class="pf-c-menu__search-input">
|
|
1486
|
-
<div class="pf-c-search-input">
|
|
1487
|
-
<div class="pf-c-search-input__bar">
|
|
1488
|
-
<span class="pf-c-search-input__text">
|
|
1489
|
-
<span class="pf-c-search-input__icon">
|
|
1490
|
-
<i
|
|
1491
|
-
class="fas fa-search fa-fw"
|
|
1492
|
-
aria-hidden="true"
|
|
1493
|
-
></i>
|
|
1494
|
-
</span>
|
|
1495
|
-
<input
|
|
1496
|
-
class="pf-c-search-input__text-input"
|
|
1497
|
-
type="text"
|
|
1498
|
-
placeholder="Search"
|
|
1499
|
-
aria-label="Search"
|
|
1500
|
-
/>
|
|
1501
|
-
</span>
|
|
1502
|
-
</div>
|
|
1503
|
-
</div>
|
|
1504
|
-
</div>
|
|
1505
|
-
</div>
|
|
1506
|
-
<hr class="pf-c-divider" />
|
|
1507
|
-
<section class="pf-c-menu__group">
|
|
1508
|
-
<h1 class="pf-c-menu__group-title">Favorites</h1>
|
|
1509
|
-
<ul class="pf-c-menu__list" role="menu">
|
|
1510
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1511
|
-
<a
|
|
1512
|
-
class="pf-c-menu__item"
|
|
1513
|
-
href="#"
|
|
1514
|
-
role="menuitem"
|
|
1515
|
-
>
|
|
1516
|
-
<span class="pf-c-menu__item-main">
|
|
1517
|
-
<span
|
|
1518
|
-
class="pf-c-menu__item-text"
|
|
1519
|
-
>Link 1</span>
|
|
1520
|
-
</span>
|
|
1521
|
-
</a>
|
|
1522
|
-
<button
|
|
1523
|
-
class="pf-c-menu__item-action pf-m-favorite pf-m-favorited"
|
|
1524
|
-
type="button"
|
|
1525
|
-
aria-label="Starred"
|
|
1526
|
-
>
|
|
1527
|
-
<span class="pf-c-menu__item-action-icon">
|
|
1528
|
-
<i
|
|
1529
|
-
class="fas fa-star"
|
|
1530
|
-
aria-hidden="true"
|
|
1531
|
-
></i>
|
|
1532
|
-
</span>
|
|
1533
|
-
</button>
|
|
1534
|
-
</li>
|
|
1535
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1536
|
-
<a
|
|
1537
|
-
class="pf-c-menu__item"
|
|
1538
|
-
href="#"
|
|
1539
|
-
role="menuitem"
|
|
1540
|
-
target="_blank"
|
|
1541
|
-
>
|
|
1542
|
-
<span class="pf-c-menu__item-main">
|
|
1543
|
-
<span
|
|
1544
|
-
class="pf-c-menu__item-text"
|
|
1545
|
-
>Link 2</span>
|
|
1546
|
-
<span
|
|
1547
|
-
class="pf-c-menu__item-external-icon"
|
|
1548
|
-
>
|
|
1549
|
-
<i
|
|
1550
|
-
class="fas fa-external-link-alt"
|
|
1551
|
-
aria-hidden="true"
|
|
1552
|
-
></i>
|
|
1553
|
-
</span>
|
|
1554
|
-
<span
|
|
1555
|
-
class="pf-screen-reader"
|
|
1556
|
-
>(opens new window)</span>
|
|
1557
|
-
</span>
|
|
1558
|
-
</a>
|
|
1559
|
-
<button
|
|
1560
|
-
class="pf-c-menu__item-action pf-m-favorite"
|
|
1561
|
-
type="button"
|
|
1562
|
-
aria-label="Not starred"
|
|
1563
|
-
>
|
|
1564
|
-
<span class="pf-c-menu__item-action-icon">
|
|
1565
|
-
<i
|
|
1566
|
-
class="fas fa-star"
|
|
1567
|
-
aria-hidden="true"
|
|
1568
|
-
></i>
|
|
1569
|
-
</span>
|
|
1570
|
-
</button>
|
|
1571
|
-
</li>
|
|
1572
|
-
</ul>
|
|
1573
|
-
</section>
|
|
1574
|
-
<hr class="pf-c-divider" />
|
|
1575
|
-
<section class="pf-c-menu__group">
|
|
1576
|
-
<h1 class="pf-c-menu__group-title">Group 1</h1>
|
|
1577
|
-
<ul class="pf-c-menu__list" role="menu">
|
|
1578
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1579
|
-
<a
|
|
1580
|
-
class="pf-c-menu__item"
|
|
1581
|
-
href="#"
|
|
1582
|
-
role="menuitem"
|
|
1583
|
-
>
|
|
1584
|
-
<span class="pf-c-menu__item-main">
|
|
1585
|
-
<span
|
|
1586
|
-
class="pf-c-menu__item-text"
|
|
1587
|
-
>Link 1</span>
|
|
1588
|
-
</span>
|
|
1589
|
-
</a>
|
|
1590
|
-
<button
|
|
1591
|
-
class="pf-c-menu__item-action pf-m-favorite"
|
|
1592
|
-
type="button"
|
|
1593
|
-
aria-label="Not starred"
|
|
1594
|
-
>
|
|
1595
|
-
<span class="pf-c-menu__item-action-icon">
|
|
1596
|
-
<i
|
|
1597
|
-
class="fas fa-star"
|
|
1598
|
-
aria-hidden="true"
|
|
1599
|
-
></i>
|
|
1600
|
-
</span>
|
|
1601
|
-
</button>
|
|
1602
|
-
</li>
|
|
1603
|
-
<li class="pf-c-menu__list-item" role="none">
|
|
1604
|
-
<a
|
|
1605
|
-
class="pf-c-menu__item"
|
|
1606
|
-
href="#"
|
|
1607
|
-
role="menuitem"
|
|
1608
|
-
target="_blank"
|
|
1609
|
-
>
|
|
1610
|
-
<span class="pf-c-menu__item-main">
|
|
1611
|
-
<span
|
|
1612
|
-
class="pf-c-menu__item-text"
|
|
1613
|
-
>Link 2</span>
|
|
1614
|
-
<span
|
|
1615
|
-
class="pf-c-menu__item-external-icon"
|
|
1616
|
-
>
|
|
1617
|
-
<i
|
|
1618
|
-
class="fas fa-external-link-alt"
|
|
1619
|
-
aria-hidden="true"
|
|
1620
|
-
></i>
|
|
1621
|
-
</span>
|
|
1622
|
-
<span
|
|
1623
|
-
class="pf-screen-reader"
|
|
1624
|
-
>(opens new window)</span>
|
|
1625
|
-
</span>
|
|
1626
|
-
</a>
|
|
1627
|
-
<button
|
|
1628
|
-
class="pf-c-menu__item-action pf-m-favorite pf-m-favorited"
|
|
1629
|
-
type="button"
|
|
1630
|
-
aria-label="Starred"
|
|
1631
|
-
>
|
|
1632
|
-
<span class="pf-c-menu__item-action-icon">
|
|
1633
|
-
<i
|
|
1634
|
-
class="fas fa-star"
|
|
1635
|
-
aria-hidden="true"
|
|
1636
|
-
></i>
|
|
1637
|
-
</span>
|
|
1638
|
-
</button>
|
|
1639
|
-
</li>
|
|
1640
|
-
</ul>
|
|
1641
|
-
</section>
|
|
1642
|
-
</div>
|
|
1643
|
-
</li>
|
|
1644
|
-
</ul>
|
|
1645
|
-
</section>
|
|
1646
|
-
</div>
|
|
1647
|
-
</div>
|
|
1648
|
-
</div>
|
|
1649
|
-
</div>
|
|
1650
|
-
</div>
|
|
1651
|
-
<div class="pf-c-toolbar__item pf-m-hidden pf-m-visible-on-sm">
|
|
1652
|
-
<div
|
|
1653
|
-
class="pf-c-dropdown pf-m-full-height"
|
|
1654
|
-
style="--pf-c-dropdown--MaxWidth: 20ch;"
|
|
1655
|
-
>
|
|
1656
|
-
<button
|
|
1657
|
-
class="pf-c-dropdown__toggle"
|
|
1658
|
-
id="page-demo-full-height-masthead-profile-button"
|
|
1659
|
-
aria-expanded="false"
|
|
1660
|
-
type="button"
|
|
1661
|
-
>
|
|
1662
|
-
<span class="pf-c-dropdown__toggle-image">
|
|
1663
|
-
<img
|
|
1664
|
-
class="pf-c-avatar"
|
|
1665
|
-
alt="Avatar image"
|
|
1666
|
-
src="/assets/images/img_avatar-light.svg"
|
|
1667
|
-
/>
|
|
1668
|
-
</span>
|
|
1669
|
-
<span class="pf-c-dropdown__toggle-text">Ned Username</span>
|
|
1670
|
-
<span class="pf-c-dropdown__toggle-icon">
|
|
1671
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
1672
|
-
</span>
|
|
1673
|
-
</button>
|
|
1674
|
-
<div class="pf-c-dropdown__menu" hidden>
|
|
1675
|
-
<section class="pf-c-dropdown__group">
|
|
1676
|
-
<div class="pf-c-dropdown__menu-item pf-m-text">
|
|
1677
|
-
<div class="pf-u-font-size-sm">Account number:</div>
|
|
1678
|
-
<div>123456789</div>
|
|
1679
|
-
</div>
|
|
1680
|
-
<div class="pf-c-dropdown__menu-item pf-m-text">
|
|
1681
|
-
<div class="pf-u-font-size-sm">Username:</div>
|
|
1682
|
-
<div>mshaksho@redhat.com</div>
|
|
1683
|
-
</div>
|
|
1684
|
-
</section>
|
|
1685
|
-
<hr class="pf-c-divider" />
|
|
1686
|
-
<section class="pf-c-dropdown__group">
|
|
1687
|
-
<ul>
|
|
1688
|
-
<li>
|
|
1689
|
-
<a class="pf-c-dropdown__menu-item" href="#">My profile</a>
|
|
1690
|
-
</li>
|
|
1691
|
-
<li>
|
|
1692
|
-
<a
|
|
1693
|
-
class="pf-c-dropdown__menu-item"
|
|
1694
|
-
href="#"
|
|
1695
|
-
>User management</a>
|
|
1696
|
-
</li>
|
|
1697
|
-
<li>
|
|
1698
|
-
<a class="pf-c-dropdown__menu-item" href="#">Logout</a>
|
|
1699
|
-
</li>
|
|
1700
|
-
</ul>
|
|
1701
|
-
</section>
|
|
1702
|
-
</div>
|
|
1703
|
-
</div>
|
|
1704
|
-
</div>
|
|
1705
|
-
</div>
|
|
1706
|
-
</div>
|
|
1707
|
-
</div>
|
|
1708
|
-
</div>
|
|
1709
|
-
</header>
|
|
1710
|
-
<div class="pf-c-page__sidebar">
|
|
1711
|
-
<div class="pf-c-page__sidebar-body">
|
|
1712
|
-
<nav
|
|
1713
|
-
class="pf-c-nav"
|
|
1714
|
-
id="page-demo-full-height-primary-nav"
|
|
1715
|
-
aria-label="Global"
|
|
1716
|
-
>
|
|
1717
|
-
<ul class="pf-c-nav__list" role="list">
|
|
1718
|
-
<li class="pf-c-nav__item">
|
|
1719
|
-
<a href="#" class="pf-c-nav__link">System panel</a>
|
|
1720
|
-
</li>
|
|
1721
|
-
<li class="pf-c-nav__item">
|
|
1722
|
-
<a
|
|
1723
|
-
href="#"
|
|
1724
|
-
class="pf-c-nav__link pf-m-current"
|
|
1725
|
-
aria-current="page"
|
|
1726
|
-
>Policy</a>
|
|
1727
|
-
</li>
|
|
1728
|
-
<li class="pf-c-nav__item">
|
|
1729
|
-
<a href="#" class="pf-c-nav__link">Authentication</a>
|
|
1730
|
-
</li>
|
|
1731
|
-
<li class="pf-c-nav__item">
|
|
1732
|
-
<a href="#" class="pf-c-nav__link">Network services</a>
|
|
1733
|
-
</li>
|
|
1734
|
-
<li class="pf-c-nav__item">
|
|
1735
|
-
<a href="#" class="pf-c-nav__link">Server</a>
|
|
1736
|
-
</li>
|
|
1737
|
-
</ul>
|
|
1738
|
-
</nav>
|
|
1739
|
-
</div>
|
|
1740
|
-
</div>
|
|
1741
|
-
<main
|
|
1742
|
-
class="pf-c-page__main"
|
|
1743
|
-
tabindex="-1"
|
|
1744
|
-
id="main-content-page-demo-full-height"
|
|
1745
|
-
>
|
|
1746
|
-
<section class="pf-c-page__main-breadcrumb pf-m-limit-width">
|
|
1747
|
-
<div class="pf-c-page__main-body">
|
|
1748
|
-
<nav class="pf-c-breadcrumb" aria-label="breadcrumb">
|
|
1749
|
-
<ol class="pf-c-breadcrumb__list" role="list">
|
|
1750
|
-
<li class="pf-c-breadcrumb__item">
|
|
1751
|
-
<a href="#" class="pf-c-breadcrumb__link">Section home</a>
|
|
1752
|
-
</li>
|
|
1753
|
-
<li class="pf-c-breadcrumb__item">
|
|
1754
|
-
<span class="pf-c-breadcrumb__item-divider">
|
|
1755
|
-
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
1756
|
-
</span>
|
|
1757
|
-
|
|
1758
|
-
<a href="#" class="pf-c-breadcrumb__link">Section title</a>
|
|
1759
|
-
</li>
|
|
1760
|
-
<li class="pf-c-breadcrumb__item">
|
|
1761
|
-
<span class="pf-c-breadcrumb__item-divider">
|
|
1762
|
-
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
1763
|
-
</span>
|
|
1764
|
-
|
|
1765
|
-
<a href="#" class="pf-c-breadcrumb__link">Section title</a>
|
|
1766
|
-
</li>
|
|
1767
|
-
<li class="pf-c-breadcrumb__item">
|
|
1768
|
-
<span class="pf-c-breadcrumb__item-divider">
|
|
1769
|
-
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
1770
|
-
</span>
|
|
1771
|
-
|
|
1772
|
-
<a
|
|
1773
|
-
href="#"
|
|
1774
|
-
class="pf-c-breadcrumb__link pf-m-current"
|
|
1775
|
-
aria-current="page"
|
|
1776
|
-
>Section landing</a>
|
|
1777
|
-
</li>
|
|
1778
|
-
</ol>
|
|
1779
|
-
</nav>
|
|
1780
|
-
</div>
|
|
1781
|
-
</section>
|
|
1782
|
-
<section class="pf-c-page__main-section pf-m-limit-width pf-m-light">
|
|
1783
|
-
<div class="pf-c-page__main-body">
|
|
1784
|
-
<div class="pf-c-content">
|
|
1785
|
-
<h1>Main title</h1>
|
|
1786
|
-
<p>This is a full page demo.</p>
|
|
1787
|
-
</div>
|
|
1788
|
-
</div>
|
|
1789
|
-
</section>
|
|
1790
|
-
<section class="pf-c-page__main-section pf-m-limit-width">
|
|
1791
|
-
<div class="pf-c-page__main-body">
|
|
1792
|
-
<div class="pf-l-gallery pf-m-gutter">
|
|
1793
|
-
<div class="pf-c-card">
|
|
1794
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1795
|
-
</div>
|
|
1796
|
-
<div class="pf-c-card">
|
|
1797
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1798
|
-
</div>
|
|
1799
|
-
<div class="pf-c-card">
|
|
1800
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1801
|
-
</div>
|
|
1802
|
-
<div class="pf-c-card">
|
|
1803
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1804
|
-
</div>
|
|
1805
|
-
<div class="pf-c-card">
|
|
1806
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1807
|
-
</div>
|
|
1808
|
-
<div class="pf-c-card">
|
|
1809
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1810
|
-
</div>
|
|
1811
|
-
<div class="pf-c-card">
|
|
1812
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1813
|
-
</div>
|
|
1814
|
-
<div class="pf-c-card">
|
|
1815
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1816
|
-
</div>
|
|
1817
|
-
<div class="pf-c-card">
|
|
1818
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1819
|
-
</div>
|
|
1820
|
-
<div class="pf-c-card">
|
|
1821
|
-
<div class="pf-c-card__body">This is a card</div>
|
|
1822
|
-
</div>
|
|
1823
|
-
</div>
|
|
1824
|
-
</div>
|
|
1825
|
-
</section>
|
|
1826
|
-
</main>
|
|
1827
|
-
</div>
|
|
1828
|
-
|
|
1829
|
-
```
|
|
1830
|
-
|
|
1831
916
|
### Multiple sidebar body elements
|
|
1832
917
|
|
|
1833
918
|
```html isFullscreen
|
|
@@ -9926,7 +9011,3 @@ Using the `.pf-m-full-height` modifier class on the page component eliminates th
|
|
|
9926
9011
|
</div>
|
|
9927
9012
|
|
|
9928
9013
|
```
|
|
9929
|
-
|
|
9930
|
-
## Documentation
|
|
9931
|
-
|
|
9932
|
-
To make the page component fill the full height of the viewport, it is recommended to add `height: 100%;` to all ancestor elements of the page component. Alternatively, use the `.pf-m-full-height` modifier class on the page component.
|