Example #1
0
 private void SetBreakpointValues(JustifyContentOption value, params Breakpoint[] breakpoints)
 {
     foreach (var breakpoint in breakpoints)
     {
         this.breakpointDictionary[breakpoint] = value;
     }
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FluentJustifyContent"/> class.
 /// </summary>
 /// <param name="initialValue">The initial value across all CSS media queries.</param>
 public FluentJustifyContent(JustifyContentOption initialValue)
 {
     this.breakpointDictionary.Add(Breakpoint.Mobile, initialValue);
     this.breakpointDictionary.Add(Breakpoint.Tablet, initialValue);
     this.breakpointDictionary.Add(Breakpoint.Desktop, initialValue);
     this.breakpointDictionary.Add(Breakpoint.Widescreen, initialValue);
     this.breakpointDictionary.Add(Breakpoint.FullHD, initialValue);
 }
Example #3
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnMobileAndLarger(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop, Breakpoint.Widescreen, Breakpoint.FullHD);
     return(this);
 }
Example #4
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnMobile(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Mobile);
     return(this);
 }
Example #5
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnFullHD(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.FullHD);
     return(this);
 }
Example #6
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnDesktopAndSmaller(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop);
     return(this);
 }
Example #7
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnDesktop(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Desktop);
     return(this);
 }
Example #8
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnWidescreenAndLarger(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Widescreen, Breakpoint.FullHD);
     return(this);
 }
Example #9
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnWidescreen(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Widescreen);
     return(this);
 }
Example #10
0
 /// <inheritdoc/>
 public IFluentJustifyContent OnTablet(JustifyContentOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Tablet);
     return(this);
 }