Преглед изворни кода

Fixed default Bulma styles for links

theflametrooper пре 7 година
родитељ
комит
4b424dc76b

+ 2 - 0
frontend/components/Admin/Stations.vue

@@ -221,4 +221,6 @@
 		display: flex;
     	justify-content: space-around;
 	}
+
+	.card-footer-item { color: #029ce3; }
 </style>

+ 3 - 1
frontend/components/Modals/EditStation.vue

@@ -201,4 +201,6 @@
 		display: flex;
 		align-items: center;
 	}
-</style>
+
+	.select:after { border-color: #029ce3; }
+</style>

+ 3 - 1
frontend/components/Modals/EditUser.vue

@@ -95,4 +95,6 @@
 	.save-changes { color: #fff; }
 
 	.tag:not(:last-child) { margin-right: 5px; }
-</style>
+
+	.select:after { border-color: #029ce3; }
+</style>

+ 3 - 1
frontend/components/Modals/Login.vue

@@ -66,4 +66,6 @@
 	.is-primary:focus { background-color: #029ce3 !important; }
 
 	.invert { filter: brightness(5); }
-</style>
+
+	a { color: #029ce3; }
+</style>

+ 3 - 1
frontend/components/Modals/Register.vue

@@ -84,4 +84,6 @@
 	.invert { filter: brightness(5); }
 
 	#recaptcha { padding: 10px 0; }
-</style>
+
+	a { color: #029ce3; }
+</style>

+ 3 - 1
frontend/components/User/Settings.vue

@@ -96,7 +96,7 @@
 				_this.socket = socket;
 				_this.socket.emit('users.findBySession', res => {
 					if (res.status == 'success') {
-						_this.user = res.data; 
+						_this.user = res.data;
 						_this.password = _this.user.password;
 						_this.github = _this.user.github;
 					} else {
@@ -187,4 +187,6 @@
 	.container {
 		padding: 25px;
 	}
+
+	a { color: #029ce3 !important; }
 </style>