mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 10:54:51 +00:00
* turn updates * smalle fixes aan turn updates * better human/ai selector with bot selection and depth on TicTacToeAIR * depth + thinktime back to AIs, along with a a specific TicTacToeAIRSleep * fixed overlapping back and disconnect buttons * Changed to debug instead of info * changed the transitionNextCustom to be easier to use * added getAllWidgets to WidgetContainer * Correct back view * added replacePrevious in ViewWidget * added removeIndexFromPreviousChain * fixed incorrect index counting * Fixt wrong view order * Removed todo * Challenge popups "Fixed" * Popups now remove themselves * localize the ChallengePopup text * made the game text a header instead * fixed getAllWidgets * Escape popup * fixed redundant container * Escape remove popup * Working escape menu * Added find functionality * Tutorials moved to escape menu * Escape can't be opened in mainview now * Can now test the event bus, created testable interfaces * Logging errors * Made events and handlers more generic * Suppress * Managers now have changeable eventbus * Tutorials fixed * Removed import * Single threaded eventbus * Fixed wrong eventbus * Removed get * Removed old code * Renaming * Optimization * Removed useless comment * Removed unnecessary imports * Rename * Renaming, refactor and type safety * Rename * Removed import --------- Co-authored-by: michiel301b <m.brands.3@st.hanze.nl> Co-authored-by: ramollia <>
61 lines
724 B
CSS
61 lines
724 B
CSS
.button {
|
|
-fx-background-radius: 6;
|
|
-fx-cursor: hand;
|
|
-fx-padding: 14 28;
|
|
}
|
|
|
|
.combo-box {
|
|
-fx-background-radius: 4;
|
|
-fx-cursor: hand;
|
|
-fx-padding: 12;
|
|
}
|
|
|
|
.combo-box .arrow-button {
|
|
-fx-padding: 0;
|
|
}
|
|
|
|
.combo-box-popup .list-cell {
|
|
-fx-padding: 8 0 8 0;
|
|
}
|
|
|
|
.container {
|
|
-fx-padding: 28;
|
|
-fx-spacing: 14;
|
|
}
|
|
|
|
.hboxspacing {
|
|
-fx-padding: 2;
|
|
-fx-spacing: 10;
|
|
}
|
|
|
|
.current-player {
|
|
-fx-font-size: 32px;
|
|
}
|
|
|
|
.header {
|
|
-fx-font-size: 28px;
|
|
-fx-font-weight: bold;
|
|
}
|
|
|
|
.input {
|
|
-fx-background-radius: 4;
|
|
-fx-padding: 12;
|
|
}
|
|
|
|
.separator {
|
|
-fx-padding: 14 0;
|
|
}
|
|
|
|
.slider {
|
|
-fx-padding: 10 0;
|
|
}
|
|
|
|
.text {
|
|
-fx-font-size: 22px;
|
|
-fx-font-weight: normal;
|
|
}
|
|
|
|
.image {
|
|
-fx-max-width: 200px;
|
|
-fx-max-height: 200px;
|
|
} |