Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

to Anatoly #54

Open
wants to merge 6 commits into
base: master-iteration2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions logs/info.log
Original file line number Diff line number Diff line change
Expand Up @@ -846,3 +846,47 @@
2020.05.28 00:07:54.435 INFO Events - The user Love logged in
2020.05.28 00:10:39.334 INFO Events - An event was added to the match 200004
2020.05.28 00:11:20.963 INFO Events - The user Turgeman logged in
2020.06.02 22:56:34.894 INFO Events - system is up
2020.06.02 23:07:53.474 INFO org.jooq.Constants -

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
@@@@@@@@@@@@@@@@ @@ @@ @@@@@@@@@@
@@@@@@@@@@ @@@@ @@ @@ @@@@@@@@@@
@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@
@@@@@@@@@@ @@ @ @ @@@@@@@@@@
@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Thank you for using jOOQ 3.13.2

2020.06.02 23:08:17.608 INFO Events - The user Love logged in
2020.06.02 23:38:18.265 INFO Events - system is up
2020.06.02 23:38:27.098 INFO org.jooq.Constants -

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
@@@@@@@@@@@@@@@@ @@ @@ @@@@@@@@@@
@@@@@@@@@@ @@@@ @@ @@ @@@@@@@@@@
@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@
@@@@@@@@@@ @@ @ @ @@@@@@@@@@
@@@@@@@@@@ @@ @@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Thank you for using jOOQ 3.13.2

2020.06.02 23:38:51.439 INFO Events - The user Love logged in
80 changes: 40 additions & 40 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,46 +9,46 @@
<version>1.0-SNAPSHOT</version>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<excludes>
<exlude>**/*Test.java</exlude>
<exclude>**/Test*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M4</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/*Test.java</exclude>
<exclude>**/Test*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<includes>
<include>**/TeamDBTest.java</include>
<!--<include>**/Test*.java</include>-->
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M4</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>**/TeamDBTest.java</include>
<!--<include>**/Test*.java</include>-->
</includes>
</configuration>
</plugin>
</plugins>
</build>


Expand Down
10 changes: 10 additions & 0 deletions src/main/resources/css/login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#showpass{
-fx-background-size: 20px 12px;
-fx-background-image: url("../../../resources/icons/eye.PNG");
-fx-background-repeat: no-repeat;
-fx-background-position: center;
-fx-border-color: transparent;
-fx-border-width: 0;
-fx-background-radius: 0;
-fx-background-color: transparent;
}
104 changes: 104 additions & 0 deletions src/main/resources/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
#actions{
-fx-border-color: black;
-fx-background-color: #202020;

}

#userName{
-fx-font-size: 12px;
-fx-text-fill: white;
}

.button{
-fx-background-color: #606060;
-fx-font-family: "Helvetica";
-fx-font-size: 12px;
-fx-text-fill: white;
-fx-effect: dropshadow( three-pass-box , rgba(255,255,255,0.2) , 1, 0.0 , 0 , 1);
}

.button:hover{
-fx-background-color: #A0A0A0;
-fx-font-family: "Helvetica";
-fx-font-size: 12px;
-fx-text-fill: white;
-fx-effect: dropshadow( three-pass-box , rgba(255,255,255,0.2) , 1, 0.0 , 0 , 1);
}

.menu-button{
-fx-background-color: #606060;
-fx-font-family: "Helvetica";
-fx-font-size: 12px;
-fx-text-fill: white;
}

.menu-button .label{
-fx-background-color: #606060;
-fx-font-family: "Helvetica";
-fx-font-size: 12px;
-fx-text-fill: white;
}


.menu-button:hover{
-fx-background-color: #A0A0A0;
-fx-font-family: "Helvetica";
-fx-font-size: 12px;
-fx-text-fill: white;
}

.menu-item {
-fx-background-color: #606060;
-fx-font-size: 12px;
-fx-text-fill: white;
}

.menu-item:hover {
-fx-background-color: #A0A0A0;
-fx-font-size: 12px;
-fx-text-fill: white;
}

.menu-button > .arrow-button {
-fx-background-color: #606060;
}

.menu-button > .arrow-button:hover {
-fx-background-color: #A0A0A0;
}

.context-menu {
-fx-background-color: #606060;
-fx-background-insets: 0,1,4,5,6;
-fx-background-radius: 9,8,5,4,3;
-fx-font-family: "Helvetica";
-fx-font-size: 12px;
-fx-text-fill: white;
}

.menu-item .label {
-fx-background-color: #606060;
-fx-font-family: "Helvetica";
-fx-font-size: 12px;
-fx-text-fill: white;
-fx-effect: dropshadow( three-pass-box , rgba(255,255,255,0.2) , 1, 0.0 , 0 , 1);
}

#titlePane{
-fx-background-color: #FF8000;
}

#menuPane{
-fx-background-color: #FFFFFF;
}

.accordion .titled-pane .title {
-fx-background-color:
rgba(0,0,0,0.08),
linear-gradient(#5a61af, #51536d),
linear-gradient(#e4fbff 0%,#cee6fb 10%, #a5d3fb 50%, #88c6fb 51%, #d5faff 100%);
-fx-background-insets: 0 0 -1 0,0,1;
-fx-background-radius: 5,5,4;
-fx-text-fill: #242d35;
-fx-font-size: 14px;
}
Loading