We are attempting to move the date and time of the lock screen. We've discovered Gnome uses a CSS file for the lock screen's configuration.
The file is located in //usr/share/gnome-shell/theme/ubuntu.css
Below is the snippet of code that we attempted to modify. You can find these between lines 1767 & 1780.
.screen-shield-clock {
color: white;
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
font-weight: bold;
text-align: center;
padding-bottom: 1.5em; }
.screen-shield-clock-time {
font-size: 72pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); }
.screen-shield-clock-date {
font-size: 28pt;
font-weight: normal; }
We tried to change the code to .screen-shield-clock to the following
.screen-shield-clock {
color: white;
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
font-weight: bold;
vertical-align: top;
text-align: left;
padding-bottom: 1.5em; }
Adding vertical-align: top and changing text-align: left
Unfortunately this didn't work. Any guidance on which settings we will need to change would be great. Even if it's on the top right hand corner, would be alright.
Thanks in advance!