diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-30 01:31:30 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-30 01:31:30 +0200 |
commit | d959f4636087f18da1c478ad6c455c8b7ebf50df (patch) | |
tree | 6e592f401b23127928508ec758a366d70065e0cb | |
parent | 095eeb4fc36df794a2099251c5d3c37b438dcefb (diff) | |
download | FlightCore-d959f4636087f18da1c478ad6c455c8b7ebf50df.tar.gz FlightCore-d959f4636087f18da1c478ad6c455c8b7ebf50df.zip |
Add CSS for locked functionality
-rw-r--r-- | dist/css/main.css | 5 | ||||
-rw-r--r-- | dist/index.html | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/dist/css/main.css b/dist/css/main.css index 2d70c55a..5dd9c4c7 100644 --- a/dist/css/main.css +++ b/dist/css/main.css @@ -94,3 +94,8 @@ button { padding: .875rem 3rem; font-size: 1.5rem; } + +/* Assigned mainly to buttons that contain unimplemented functionality */ +.locked { + cursor: not-allowed; +} diff --git a/dist/index.html b/dist/index.html index f8077a2e..ea176b90 100644 --- a/dist/index.html +++ b/dist/index.html @@ -13,7 +13,7 @@ - Run Northstar The functionality it serves and what it displays is based on the current state of the application --> - <button id="omni-button">Loading...</button> + <button id="omni-button", class="locked">Loading...</button> <install-location-holder>EMPTY</install-location-holder> <div class="hello">Click for Hello</div> <counter-button>ADD</counter-button> |