Create "Date and time settings" page
There was a Date and time page in the GUI. Enhanced it to
display the BMC time and added it to the menu so users
could navigate to it.
Future things planned for this page:
Setting the time, time mode, and time owner.
Adding a NTP server.
More information can be found in the time manager README:
https://github.com/openbmc/phosphor-time-manager/blob/master/README.md
Tested: See the BMC time.
Change-Id: Ia3ac2385cb45ec8009ed6df0899c3410fe18ef64
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/app/configuration/styles/date-time.scss b/app/configuration/styles/date-time.scss
index e69de29..670e549 100644
--- a/app/configuration/styles/date-time.scss
+++ b/app/configuration/styles/date-time.scss
@@ -0,0 +1,19 @@
+// Date Time SCSS
+
+.date-time__metadata-wrapper {
+ margin: 0;
+ padding: 0;
+}
+
+.date-time__metadata-block {
+ list-style-type: none;
+ width: 47%;
+ margin-bottom: 1.8em;
+ margin-right: .7em;
+ display: inline-block;
+ white-space: normal;
+ word-break: break-all;
+ @include mediaQuery(small) {
+ float: left;
+ }
+}