From 5db80ac0d40076142c35fa17f96a9e288ec2aa13 Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Sun, 26 Nov 2017 13:03:07 +0100 Subject: [PATCH] fixed position of download app link --- sql/lbryexplorer.ddl.sql | 4 ---- src/Template/Main/index.ctp | 9 +++++++-- webroot/css/main.css | 3 ++- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/sql/lbryexplorer.ddl.sql b/sql/lbryexplorer.ddl.sql index f624d4c..50e04d0 100644 --- a/sql/lbryexplorer.ddl.sql +++ b/sql/lbryexplorer.ddl.sql @@ -233,7 +233,3 @@ CREATE TABLE `PriceHistory` PRIMARY KEY `PK_PriceHistory` (`Id`), UNIQUE KEY `Idx_PriceHistoryCreated` (`Created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=4; - -ALTER TABLE Claims ADD UNIQUE KEY `Idx_ClaimUnique` (`TransactionHash`, `Vout`, `ClaimId`); -ALTER TABLE Addresses ADD COLUMN `Balance` DECIMAL(18,8) AS (`TotalReceived` - `TotalSent`) PERSISTENT AFTER `TotalSent`; -ALTER TABLE Addresses ADD INDEX `Idx_AddressBalance` (`Balance`); \ No newline at end of file diff --git a/src/Template/Main/index.ctp b/src/Template/Main/index.ctp index c8830fe..276f28d 100644 --- a/src/Template/Main/index.ctp +++ b/src/Template/Main/index.ctp @@ -114,10 +114,15 @@
LBRY Block Explorer

-
-
+
+ + + +
diff --git a/webroot/css/main.css b/webroot/css/main.css index 3f4b3b0..b13ffa1 100644 --- a/webroot/css/main.css +++ b/webroot/css/main.css @@ -21,7 +21,8 @@ border-radius: 0 6px 8px 0 } .home-container-cell .ctls { width: 720px; text-align: center; margin: 24px auto; position: relative } .home-container-cell .ctls .btn-search { font-size: 115%; display: inline-block; padding: 12px 48px; background: #1e88e5; color: #fff; border-radius: 8px; border: none; font-weight: 300; cursor: pointer } .home-container-cell .ctls .btn-search:hover { background: #1976d2 } -.home-container-cell .ctls .links { display: inline-block; font-weight: 300; position: absolute; right: 0; padding-top: 12px; } +.home-container-cell .ctls .left-links { display: inline-block; font-weight: 300; position: absolute; left: 0; padding-top: 12px; } +.home-container-cell .ctls .right-links { display: inline-block; font-weight: 300; position: absolute; right: 0; padding-top: 12px; } .home-container-cell .ctls a { font-size: 115%; display: inline-block; margin-right: 12px } .home-container-cell .ctls a.last { margin-left: 12px; margin-right: 0 } .home-container-cell .ctls a:hover { text-decoration: none; color: #1976d2 }