diff options
| author | Yoshie Muranaka <yoshiemuranaka@gmail.com> | 2019-05-16 16:46:21 -0500 |
|---|---|---|
| committer | Gunnar Mills <gmills@us.ibm.com> | 2019-05-29 15:45:21 +0000 |
| commit | 6a3b3b2cdd8e92265997fe66f6c8489caf1dd403 (patch) | |
| tree | 186d10d1fa9d1a40115a6f6ddc504fc0035e8f1e /app/common | |
| parent | 21f8cb9439e876108c00d80346cae1f89fd1a45e (diff) | |
| download | phosphor-webui-6a3b3b2cdd8e92265997fe66f6c8489caf1dd403.tar.gz phosphor-webui-6a3b3b2cdd8e92265997fe66f6c8489caf1dd403.zip | |
Fix tablet alignment issues for event logs
This will make sure our event log content is properly aligned
on tablet and desktop views. It will also make the date/time value
on the server overview page always display underneath the 'BMC time'
label in a destkop view–currently the date value will wrap to a
new line if the string is too long.
- Update markup to use Foundation grid layout classes on the
server overview event log table
Tested: Event log tables on server overview page and event
log page
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I7d765ebbe679f954e606d1d25e2182d983a7b3f3
Diffstat (limited to 'app/common')
| -rw-r--r-- | app/common/styles/elements/quicklinks.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/common/styles/elements/quicklinks.scss b/app/common/styles/elements/quicklinks.scss index aeb7f5f..9fec160 100644 --- a/app/common/styles/elements/quicklinks.scss +++ b/app/common/styles/elements/quicklinks.scss @@ -39,6 +39,13 @@ .bmc-time { text-align: right; max-width: 17em; + float: right; + @include mediaQuery(medium) { + display: block; + text-align: left; + float: none; + margin-top: 0.25em; + } } &:after { display: none; |

