|
105 | 105 |
|
106 | 106 | <!-- Floating Action Button --> |
107 | 107 | <Style Selector="Button.fab"> |
108 | | - <Setter Property="Background" Value="#10B981" /> |
| 108 | + <Setter Property="Background"> |
| 109 | + <Setter.Value> |
| 110 | + <LinearGradientBrush StartPoint="0%,0%" EndPoint="100%,100%"> |
| 111 | + <GradientStop Color="#10B981" Offset="0" /> |
| 112 | + <GradientStop Color="#059669" Offset="1" /> |
| 113 | + </LinearGradientBrush> |
| 114 | + </Setter.Value> |
| 115 | + </Setter> |
109 | 116 | <Setter Property="Foreground" Value="White" /> |
110 | 117 | <Setter Property="CornerRadius" Value="30" /> |
111 | | - <Setter Property="Width" Value="60" /> |
112 | | - <Setter Property="Height" Value="60" /> |
| 118 | + <Setter Property="Width" Value="64" /> |
| 119 | + <Setter Property="Height" Value="64" /> |
| 120 | + <Setter Property="Transitions"> |
| 121 | + <Transitions> |
| 122 | + <TransformOperationsTransition Property="RenderTransform" Duration="0:0:0.2" /> |
| 123 | + </Transitions> |
| 124 | + </Setter> |
113 | 125 | </Style> |
114 | 126 |
|
115 | | - <Style Selector="Button.fab:pointerover /template/ ContentPresenter#PART_ContentPresenter"> |
116 | | - <Setter Property="Background" Value="#34D399" /> |
| 127 | + <Style Selector="Button.fab:pointerover"> |
| 128 | + <Setter Property="RenderTransform" Value="scale(1.1) rotate(90deg)" /> |
117 | 129 | </Style> |
118 | 130 |
|
119 | | - <Style Selector="Button.fab:pressed /template/ ContentPresenter#PART_ContentPresenter"> |
120 | | - <Setter Property="Background" Value="#059669" /> |
| 131 | + <Style Selector="Button.fab:pressed"> |
| 132 | + <Setter Property="RenderTransform" Value="scale(1.0) rotate(90deg)" /> |
121 | 133 | </Style> |
122 | 134 |
|
123 | 135 | <!-- Task Card Buttons --> |
|
158 | 170 | </Style> |
159 | 171 |
|
160 | 172 | <!-- TextBox Styling --> |
| 173 | + <Style Selector="TextBox"> |
| 174 | + <Setter Property="Transitions"> |
| 175 | + <Transitions> |
| 176 | + <BrushTransition Property="BorderBrush" Duration="0:0:0.2" /> |
| 177 | + </Transitions> |
| 178 | + </Setter> |
| 179 | + </Style> |
| 180 | + |
161 | 181 | <Style Selector="TextBox:pointerover /template/ Border#PART_BorderElement"> |
162 | 182 | <Setter Property="BorderBrush" Value="#8B5CF6" /> |
163 | 183 | </Style> |
164 | 184 |
|
165 | 185 | <Style Selector="TextBox:focus /template/ Border#PART_BorderElement"> |
166 | 186 | <Setter Property="BorderBrush" Value="#A78BFA" /> |
| 187 | + <Setter Property="BoxShadow" Value="0 0 0 3 #8B5CF620" /> |
| 188 | + </Style> |
| 189 | + |
| 190 | + <Style Selector="TextBox.glass-combo:focus /template/ Border#PART_BorderElement"> |
| 191 | + <Setter Property="BorderBrush" Value="#50FFFFFF" /> |
| 192 | + <Setter Property="Background" Value="#25FFFFFF" /> |
| 193 | + <Setter Property="BoxShadow" Value="0 0 0 3 #15FFFFFF" /> |
167 | 194 | </Style> |
168 | 195 |
|
169 | 196 | <!-- Border Hover Effects (Self-rendering) --> |
|
205 | 232 | <Setter Property="RenderTransform" Value="scale(1.05)" /> |
206 | 233 | </Style> |
207 | 234 |
|
| 235 | + <Style Selector="Button.nav-button:pointerover PathIcon"> |
| 236 | + <Setter Property="Foreground" Value="White" /> |
| 237 | + </Style> |
| 238 | + |
| 239 | + <Style Selector="Button.nav-button:pointerover TextBlock"> |
| 240 | + <Setter Property="Foreground" Value="White" /> |
| 241 | + </Style> |
| 242 | + |
208 | 243 | <Style Selector="Button.nav-button:pressed /template/ ContentPresenter#PART_ContentPresenter"> |
209 | 244 | <Setter Property="Background"> |
210 | 245 | <Setter.Value> |
|
219 | 254 | <Style Selector="Button.nav-button:pressed"> |
220 | 255 | <Setter Property="RenderTransform" Value="scale(0.95)" /> |
221 | 256 | </Style> |
| 257 | + |
| 258 | + <Style Selector="Button.nav-button:pressed PathIcon"> |
| 259 | + <Setter Property="Foreground" Value="#A78BFA" /> |
| 260 | + </Style> |
| 261 | + |
| 262 | + <Style Selector="Button.nav-button:pressed TextBlock"> |
| 263 | + <Setter Property="Foreground" Value="#A78BFA" /> |
| 264 | + </Style> |
222 | 265 |
|
223 | | - <!-- Project Card Hover --> |
| 266 | + <!-- Project Card Styles --> |
| 267 | + <Style Selector="Button.project-card"> |
| 268 | + <Setter Property="Transitions"> |
| 269 | + <Transitions> |
| 270 | + <TransformOperationsTransition Property="RenderTransform" Duration="0:0:0.2" /> |
| 271 | + </Transitions> |
| 272 | + </Setter> |
| 273 | + </Style> |
| 274 | + |
224 | 275 | <Style Selector="Button.project-card:pointerover /template/ ContentPresenter#PART_ContentPresenter"> |
225 | | - <Setter Property="Background" Value="#334155" /> |
| 276 | + <Setter Property="Background" Value="#30FFFFFF" /> |
226 | 277 | <Setter Property="BorderBrush" Value="#8B5CF6" /> |
227 | 278 | </Style> |
| 279 | + |
| 280 | + <Style Selector="Button.project-card:pointerover"> |
| 281 | + <Setter Property="RenderTransform" Value="translateY(-2px)" /> |
| 282 | + </Style> |
| 283 | + |
| 284 | + <Style Selector="Button.project-card:pressed"> |
| 285 | + <Setter Property="RenderTransform" Value="translateY(0px)" /> |
| 286 | + </Style> |
228 | 287 |
|
229 | 288 | <!-- Title Bar Button Styles --> |
230 | 289 | <Style Selector="Button#MinimizeButton:pointerover /template/ ContentPresenter#PART_ContentPresenter"> |
|
0 commit comments